|
NAMEMath::ProvablePrime - Generate a provable prime number, in pure PerlSYNOPSIS#The returned prime will be 512 bits long #(i.e., the first and last bits will be 1) #and will be an instance of Math::BigInt. # my $prime = Math::ProvablePrime::find(512); DISCUSSIONThere’s not much more to say: this module returns a prime number of a specified bit length.The specific algorithm is Maurer’s algorithm. The logic in this module is ported from a Python implementation first posted at <http://s13.zetaboards.com/Crypto/topic/7234475/1/>. PLANNED DEPRECATIONThis module will be deprecated once Math::Prime::Util is installable without a compiler. (There is pure-Perl logic in that distribution; the install logic just needs to be tweaked.) Math::Prime::Util is faster and has a maintainer who understands the mathematics behind all of this much better than I do.Math::ProvablePrime is too slow for its intended purpose (i.e., to provide pure-Perl primes), and really, I don’t have the mathematical background that would justify its continued maintenance. If you have any objection, please let me know. SPEEDThis module is too slow for practical use. If Math::BigInt::GMP or Math::BigInt::Pari is available, then this module will use one of those backends to achieve reasonable speed. It’ll still be pretty slow, though.LICENSEThis module is released under the same license as Perl.
Visit the GSP FreeBSD Man Page Interface. |