DESCR 648 B

123456789101112
  1. This module implements Ueli Maurer's algorithm for generating large
  2. provable primes and secure parameters for public-key cryptosystems. The
  3. generated primes are almost uniformly distributed over the set of primes of
  4. the specified bitsize and expected time for generation is less than the time
  5. required for generating a pseudo-prime of the same size with Miller-Rabin
  6. tests.
  7. Crypt::Primes is a pure perl implementation. It uses Math::Pari for
  8. multiple precision integer arithmetic and number theoretic functions.
  9. Random numbers are gathered with Crypt::Random, a perl interface to
  10. /dev/arandom device found on most modern Unix operating systems.