Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
cpan /
Digest-MD5 /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
align.t
334
B
-r--r--r--
2014-12-27 11:48
badfile.t
329
B
-r--r--r--
2014-12-27 11:48
bits.t
468
B
-r--r--r--
2014-12-27 11:48
clone.t
796
B
-r--r--r--
2014-12-27 11:48
files.t
3.9
KB
-r--r--r--
2014-12-27 11:48
md5-aaa.t
86.17
KB
-r--r--r--
2014-12-27 11:48
threads.t
500
B
-r--r--r--
2014-12-27 11:48
utf8.t
1.14
KB
-r--r--r--
2014-12-27 11:48
Save
Rename
#!perl -w print "1..6\n"; use strict; use Digest::MD5 qw(md5_hex); my $a = Digest::MD5->new; $a->add("a"); my $b = $a->clone; print "not " unless $b->clone->hexdigest eq md5_hex("a"); print "ok 1\n"; $a->add("a"); print "not " unless $a->hexdigest eq md5_hex("aa"); print "ok 2\n"; print "not " unless $a->hexdigest eq md5_hex(""); print "ok 3\n"; $b->add("b"); print "not " unless $b->clone->hexdigest eq md5_hex("ab"); print "ok 4\n"; $b->add("c"); print "not " unless $b->clone->hexdigest eq md5_hex("abc"); print "ok 5\n"; # Test that cloning picks up the correct class for subclasses. { package MD5; @MD5::ISA = qw(Digest::MD5); } $a = MD5->new; $a->add("a"); $b = $a->clone; print "not " unless ref($b) eq "MD5" && $b->add("b")->hexdigest eq md5_hex("ab"); print "ok 6\n";