Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.52
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
vendor /
lib /
Crypt /
Digest /
Delete
Unzip
Name
Size
Permission
Date
Action
BLAKE2b_160.pm
6.55
KB
-rw-rw-rw-
2020-08-25 11:02
BLAKE2b_256.pm
6.55
KB
-rw-rw-rw-
2020-08-25 11:02
BLAKE2b_384.pm
6.55
KB
-rw-rw-rw-
2020-08-25 11:02
BLAKE2b_512.pm
6.55
KB
-rw-rw-rw-
2020-08-25 11:02
BLAKE2s_128.pm
6.55
KB
-rw-rw-rw-
2020-08-25 11:02
BLAKE2s_160.pm
6.55
KB
-rw-rw-rw-
2020-08-25 11:02
BLAKE2s_224.pm
6.55
KB
-rw-rw-rw-
2020-08-25 11:02
BLAKE2s_256.pm
6.55
KB
-rw-rw-rw-
2020-08-25 11:02
CHAES.pm
5.87
KB
-rw-rw-rw-
2020-08-25 11:02
Keccak224.pm
6.28
KB
-rw-rw-rw-
2020-08-25 11:02
Keccak256.pm
6.28
KB
-rw-rw-rw-
2020-08-25 11:02
Keccak384.pm
6.28
KB
-rw-rw-rw-
2020-08-25 11:02
Keccak512.pm
6.28
KB
-rw-rw-rw-
2020-08-25 11:02
MD2.pm
5.56
KB
-rw-rw-rw-
2020-08-25 11:02
MD4.pm
5.55
KB
-rw-rw-rw-
2020-08-25 11:02
MD5.pm
5.55
KB
-rw-rw-rw-
2020-08-25 11:02
RIPEMD128.pm
6.28
KB
-rw-rw-rw-
2020-08-25 11:02
RIPEMD160.pm
6.28
KB
-rw-rw-rw-
2020-08-25 11:02
RIPEMD256.pm
6.28
KB
-rw-rw-rw-
2020-08-25 11:02
RIPEMD320.pm
6.28
KB
-rw-rw-rw-
2020-08-25 11:02
SHA1.pm
5.67
KB
-rw-rw-rw-
2020-08-25 11:02
SHA224.pm
5.92
KB
-rw-rw-rw-
2020-08-25 11:02
SHA256.pm
5.92
KB
-rw-rw-rw-
2020-08-25 11:02
SHA384.pm
5.92
KB
-rw-rw-rw-
2020-08-25 11:02
SHA3_224.pm
6.16
KB
-rw-rw-rw-
2020-08-25 11:02
SHA3_256.pm
6.16
KB
-rw-rw-rw-
2020-08-25 11:02
SHA3_384.pm
6.16
KB
-rw-rw-rw-
2020-08-25 11:02
SHA3_512.pm
6.16
KB
-rw-rw-rw-
2020-08-25 11:02
SHA512.pm
5.92
KB
-rw-rw-rw-
2020-08-25 11:02
SHA512_224.pm
6.4
KB
-rw-rw-rw-
2020-08-25 11:02
SHA512_256.pm
6.4
KB
-rw-rw-rw-
2020-08-25 11:02
SHAKE.pm
1.67
KB
-rw-rw-rw-
2020-08-25 11:02
Tiger192.pm
6.17
KB
-rw-rw-rw-
2020-08-25 11:02
Whirlpool.pm
6.3
KB
-rw-rw-rw-
2020-08-25 11:02
Save
Rename
package Crypt::Digest::SHA1; ### BEWARE - GENERATED FILE, DO NOT EDIT MANUALLY! use strict; use warnings; our $VERSION = '0.069'; use base qw(Crypt::Digest Exporter); our %EXPORT_TAGS = ( all => [qw( sha1 sha1_hex sha1_b64 sha1_b64u sha1_file sha1_file_hex sha1_file_b64 sha1_file_b64u )] ); our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); our @EXPORT = qw(); use Carp; $Carp::Internal{(__PACKAGE__)}++; use Crypt::Digest; sub hashsize { Crypt::Digest::hashsize('SHA1') } sub sha1 { Crypt::Digest::digest_data('SHA1', @_) } sub sha1_hex { Crypt::Digest::digest_data_hex('SHA1', @_) } sub sha1_b64 { Crypt::Digest::digest_data_b64('SHA1', @_) } sub sha1_b64u { Crypt::Digest::digest_data_b64u('SHA1', @_) } sub sha1_file { Crypt::Digest::digest_file('SHA1', @_) } sub sha1_file_hex { Crypt::Digest::digest_file_hex('SHA1', @_) } sub sha1_file_b64 { Crypt::Digest::digest_file_b64('SHA1', @_) } sub sha1_file_b64u { Crypt::Digest::digest_file_b64u('SHA1', @_) } 1; =pod =head1 NAME Crypt::Digest::SHA1 - Hash function SHA-1 [size: 160 bits] =head1 SYNOPSIS ### Functional interface: use Crypt::Digest::SHA1 qw( sha1 sha1_hex sha1_b64 sha1_b64u sha1_file sha1_file_hex sha1_file_b64 sha1_file_b64u ); # calculate digest from string/buffer $sha1_raw = sha1('data string'); $sha1_hex = sha1_hex('data string'); $sha1_b64 = sha1_b64('data string'); $sha1_b64u = sha1_b64u('data string'); # calculate digest from file $sha1_raw = sha1_file('filename.dat'); $sha1_hex = sha1_file_hex('filename.dat'); $sha1_b64 = sha1_file_b64('filename.dat'); $sha1_b64u = sha1_file_b64u('filename.dat'); # calculate digest from filehandle $sha1_raw = sha1_file(*FILEHANDLE); $sha1_hex = sha1_file_hex(*FILEHANDLE); $sha1_b64 = sha1_file_b64(*FILEHANDLE); $sha1_b64u = sha1_file_b64u(*FILEHANDLE); ### OO interface: use Crypt::Digest::SHA1; $d = Crypt::Digest::SHA1->new; $d->add('any data'); $d->addfile('filename.dat'); $d->addfile(*FILEHANDLE); $result_raw = $d->digest; # raw bytes $result_hex = $d->hexdigest; # hexadecimal form $result_b64 = $d->b64digest; # Base64 form $result_b64u = $d->b64udigest; # Base64 URL Safe form =head1 DESCRIPTION Provides an interface to the SHA1 digest algorithm. =head1 EXPORT Nothing is exported by default. You can export selected functions: use Crypt::Digest::SHA1 qw(sha1 sha1_hex sha1_b64 sha1_b64u sha1_file sha1_file_hex sha1_file_b64 sha1_file_b64u); Or all of them at once: use Crypt::Digest::SHA1 ':all'; =head1 FUNCTIONS =head2 sha1 Logically joins all arguments into a single string, and returns its SHA1 digest encoded as a binary string. $sha1_raw = sha1('data string'); #or $sha1_raw = sha1('any data', 'more data', 'even more data'); =head2 sha1_hex Logically joins all arguments into a single string, and returns its SHA1 digest encoded as a hexadecimal string. $sha1_hex = sha1_hex('data string'); #or $sha1_hex = sha1_hex('any data', 'more data', 'even more data'); =head2 sha1_b64 Logically joins all arguments into a single string, and returns its SHA1 digest encoded as a Base64 string, B<with> trailing '=' padding. $sha1_b64 = sha1_b64('data string'); #or $sha1_b64 = sha1_b64('any data', 'more data', 'even more data'); =head2 sha1_b64u Logically joins all arguments into a single string, and returns its SHA1 digest encoded as a Base64 URL Safe string (see RFC 4648 section 5). $sha1_b64url = sha1_b64u('data string'); #or $sha1_b64url = sha1_b64u('any data', 'more data', 'even more data'); =head2 sha1_file Reads file (defined by filename or filehandle) content, and returns its SHA1 digest encoded as a binary string. $sha1_raw = sha1_file('filename.dat'); #or $sha1_raw = sha1_file(*FILEHANDLE); =head2 sha1_file_hex Reads file (defined by filename or filehandle) content, and returns its SHA1 digest encoded as a hexadecimal string. $sha1_hex = sha1_file_hex('filename.dat'); #or $sha1_hex = sha1_file_hex(*FILEHANDLE); B<BEWARE:> You have to make sure that the filehandle is in binary mode before you pass it as argument to the addfile() method. =head2 sha1_file_b64 Reads file (defined by filename or filehandle) content, and returns its SHA1 digest encoded as a Base64 string, B<with> trailing '=' padding. $sha1_b64 = sha1_file_b64('filename.dat'); #or $sha1_b64 = sha1_file_b64(*FILEHANDLE); =head2 sha1_file_b64u Reads file (defined by filename or filehandle) content, and returns its SHA1 digest encoded as a Base64 URL Safe string (see RFC 4648 section 5). $sha1_b64url = sha1_file_b64u('filename.dat'); #or $sha1_b64url = sha1_file_b64u(*FILEHANDLE); =head1 METHODS The OO interface provides the same set of functions as L<Crypt::Digest>. =head2 new $d = Crypt::Digest::SHA1->new(); =head2 clone $d->clone(); =head2 reset $d->reset(); =head2 add $d->add('any data'); #or $d->add('any data', 'more data', 'even more data'); =head2 addfile $d->addfile('filename.dat'); #or $d->addfile(*FILEHANDLE); =head2 add_bits $d->add_bits($bit_string); # e.g. $d->add_bits("111100001010"); #or $d->add_bits($data, $nbits); # e.g. $d->add_bits("\xF0\xA0", 16); =head2 hashsize $d->hashsize; #or Crypt::Digest::SHA1->hashsize(); #or Crypt::Digest::SHA1::hashsize(); =head2 digest $result_raw = $d->digest(); =head2 hexdigest $result_hex = $d->hexdigest(); =head2 b64digest $result_b64 = $d->b64digest(); =head2 b64udigest $result_b64url = $d->b64udigest(); =head1 SEE ALSO =over =item * L<CryptX|CryptX>, L<Crypt::Digest> =item * L<https://en.wikipedia.org/wiki/SHA-1> =back =cut