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-SHA /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
allfcns.t
687
B
-r--r--r--
2014-12-27 11:48
base64.t
1012
B
-r--r--r--
2014-12-27 11:48
bitbuf.t
1.45
KB
-r--r--r--
2014-12-27 11:48
fips180-4.t
1.21
KB
-r--r--r--
2014-12-27 11:48
fips198.t
906
B
-r--r--r--
2014-12-27 11:48
gg.t
2.26
KB
-r--r--r--
2014-12-27 11:48
gglong.t
2.91
KB
-r--r--r--
2014-12-27 11:48
hmacsha.t
2.08
KB
-r--r--r--
2014-12-27 11:48
ireland.t
1.17
KB
-r--r--r--
2014-12-27 11:48
methods.t
3.06
KB
-r--r--r--
2014-12-27 11:49
nistbit.t
1.5
KB
-r--r--r--
2014-12-27 11:48
nistbyte.t
1.65
KB
-r--r--r--
2014-12-27 11:48
rfc2202.t
1.17
KB
-r--r--r--
2014-12-27 11:48
sha1.t
760
B
-r--r--r--
2014-12-27 11:48
sha224.t
812
B
-r--r--r--
2014-12-27 11:48
sha256.t
836
B
-r--r--r--
2014-12-27 11:48
sha384.t
1.06
KB
-r--r--r--
2014-12-27 11:48
sha512.t
1.15
KB
-r--r--r--
2014-12-27 11:48
state.t
3.47
KB
-r--r--r--
2014-12-27 11:48
unicode.t
976
B
-r--r--r--
2014-12-27 11:48
woodbury.t
4.87
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
use strict; my $MODULE; BEGIN { $MODULE = (-d "src") ? "Digest::SHA" : "Digest::SHA::PurePerl"; eval "require $MODULE" || die $@; $MODULE->import(qw()); } BEGIN { if ($ENV{PERL_CORE}) { chdir 't' if -d 't'; @INC = '../lib'; } } my $numtests = 4; print "1..$numtests\n"; # Here's the bitstring to test against, and its SHA-1 digest my $ONEBITS = pack("B*", "1" x 80000); my $digest = "11003389959355c2773af6b0f36d842fe430ec49"; my $state = $MODULE->new("sHa1"); my $testnum = 1; $state->add_bits($ONEBITS, 80000); print "not " unless $state->hexdigest eq $digest; print "ok ", $testnum++, "\n"; # buffer using a series of increasingly large bitstrings # Note that (1 + 2 + ... + 399) + 200 = 80000 for (1 .. 399) { $state->add_bits($ONEBITS, $_); } $state->add_bits($ONEBITS, 200); print "not " unless $state->hexdigest eq $digest; print "ok ", $testnum++, "\n"; # create a buffer-alignment nuisance $state = $MODULE->new("1"); $state->add_bits($ONEBITS, 1); for (1 .. 99) { $state->add_bits($ONEBITS, 800); } $state->add_bits($ONEBITS, 799); print "not " unless $state->hexdigest eq $digest; print "ok ", $testnum++, "\n"; # buffer randomly-sized bitstrings my $reps = 80000; my $maxbits = 8 * 127; $state = $MODULE->new(1); while ($reps > $maxbits) { my $num = int(rand($maxbits)); $state->add_bits($ONEBITS, $num); $reps -= $num; } $state->add_bits($ONEBITS, $reps); print "not " unless $state->hexdigest eq $digest; print "ok ", $testnum++, "\n";