📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: largeprimes
#!/usr/local/cpanel/3rdparty/perl/542/bin/perl ## ## largeprimes -- generates large provable primes, uniformally distributed ## in random intervals, with maurer's recursive algorithm. ## ## Copyright (c) 1998, Vipul Ved Prakash. All rights reserved. ## This code is free software; you can redistribute it and/or modify ## it under the same terms as Perl itself. ## ## $Id$ our $VERSION = '0.52'; use Crypt::Primes; unless ( $bitsize ) { print "$0 -bitsize=bits -num=number_of_primes -v=verbosity\n\n"; exit 0; } for ( $i=0; $i <= $num; $i++ ) { my $prime = Crypt::Primes::maurer Size => $bitsize, Verbosity => $v, Generator => $generator; my $g = 0; if ( ref $prime eq 'HASH') { $g = $prime->{Generator}; $prime = $prime->{Prime}; } if ($t) { print "$prime\n" } else { print "\n" if $v; print "random $bitsize bit prime: $prime"; print ", $g" if $g; print "\n"; } } =head1 NAME largeprimes -- generate large, random primes using Crypt::Primes. =head1 SYNOPSIS largeprimes -bitsize=128 -v largeprimes -bitsize=512 -v=2 largeprimes -bitsize=512 -v -num=10 largeprimes -bitsize=1024 -generator -v =head1 DESCRIPTION largeprimes generates a provable prime of specified bitsize and prints it on STDOUT. For more details see Crypt::Primes(3) manpage. =head1 SEE ALSO Crypt::Primes(3) =head1 AUTHOR Vipul Ved Prakash, mail@vipul.net =head1 LICENSE Artistic. =cut
Save