BN_generate_prime.pod 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. =pod
  2. =head1 NAME
  3. BN_generate_prime_ex, BN_is_prime_ex, BN_is_prime_fasttest_ex, BN_GENCB_call,
  4. BN_GENCB_set_old, BN_GENCB_set, BN_generate_prime, BN_is_prime,
  5. BN_is_prime_fasttest - generate primes and test for primality
  6. =head1 SYNOPSIS
  7. #include <openssl/bn.h>
  8. int BN_generate_prime_ex(BIGNUM *ret,int bits,int safe, const BIGNUM *add,
  9. const BIGNUM *rem, BN_GENCB *cb);
  10. int BN_is_prime_ex(const BIGNUM *p,int nchecks, BN_CTX *ctx, BN_GENCB *cb);
  11. int BN_is_prime_fasttest_ex(const BIGNUM *p,int nchecks, BN_CTX *ctx,
  12. int do_trial_division, BN_GENCB *cb);
  13. int BN_GENCB_call(BN_GENCB *cb, int a, int b);
  14. #define BN_GENCB_set_old(gencb, callback, cb_arg) ...
  15. #define BN_GENCB_set(gencb, callback, cb_arg) ...
  16. Deprecated:
  17. BIGNUM *BN_generate_prime(BIGNUM *ret, int num, int safe, BIGNUM *add,
  18. BIGNUM *rem, void (*callback)(int, int, void *), void *cb_arg);
  19. int BN_is_prime(const BIGNUM *a, int checks, void (*callback)(int, int,
  20. void *), BN_CTX *ctx, void *cb_arg);
  21. int BN_is_prime_fasttest(const BIGNUM *a, int checks,
  22. void (*callback)(int, int, void *), BN_CTX *ctx, void *cb_arg,
  23. int do_trial_division);
  24. =head1 DESCRIPTION
  25. BN_generate_prime_ex() generates a pseudo-random prime number of
  26. bit length B<bits>.
  27. If B<ret> is not B<NULL>, it will be used to store the number.
  28. If B<cb> is not B<NULL>, it is used as follows:
  29. =over 4
  30. =item *
  31. B<BN_GENCB_call(cb, 0, i)> is called after generating the i-th
  32. potential prime number.
  33. =item *
  34. While the number is being tested for primality,
  35. B<BN_GENCB_call(cb, 1, j)> is called as described below.
  36. =item *
  37. When a prime has been found, B<BN_GENCB_call(cb, 2, i)> is called.
  38. =back
  39. The prime may have to fulfill additional requirements for use in
  40. Diffie-Hellman key exchange:
  41. If B<add> is not B<NULL>, the prime will fulfill the condition p % B<add>
  42. == B<rem> (p % B<add> == 1 if B<rem> == B<NULL>) in order to suit a given
  43. generator.
  44. If B<safe> is true, it will be a safe prime (i.e. a prime p so
  45. that (p-1)/2 is also prime).
  46. The PRNG must be seeded prior to calling BN_generate_prime_ex().
  47. The prime number generation has a negligible error probability.
  48. BN_is_prime_ex() and BN_is_prime_fasttest_ex() test if the number B<p> is
  49. prime. The following tests are performed until one of them shows that
  50. B<p> is composite; if B<p> passes all these tests, it is considered
  51. prime.
  52. BN_is_prime_fasttest_ex(), when called with B<do_trial_division == 1>,
  53. first attempts trial division by a number of small primes;
  54. if no divisors are found by this test and B<cb> is not B<NULL>,
  55. B<BN_GENCB_call(cb, 1, -1)> is called.
  56. If B<do_trial_division == 0>, this test is skipped.
  57. Both BN_is_prime_ex() and BN_is_prime_fasttest_ex() perform a Miller-Rabin
  58. probabilistic primality test with B<nchecks> iterations. If
  59. B<nchecks == BN_prime_checks>, a number of iterations is used that
  60. yields a false positive rate of at most 2^-80 for random input.
  61. If B<cb> is not B<NULL>, B<BN_GENCB_call(cb, 1, j)> is called
  62. after the j-th iteration (j = 0, 1, ...). B<ctx> is a
  63. pre-allocated B<BN_CTX> (to save the overhead of allocating and
  64. freeing the structure in a loop), or B<NULL>.
  65. BN_GENCB_call calls the callback function held in the B<BN_GENCB> structure
  66. and passes the ints B<a> and B<b> as arguments. There are two types of
  67. B<BN_GENCB> structure that are supported: "new" style and "old" style. New
  68. programs should prefer the "new" style, whilst the "old" style is provided
  69. for backwards compatibility purposes.
  70. For "new" style callbacks a BN_GENCB structure should be initialised with a
  71. call to BN_GENCB_set, where B<gencb> is a B<BN_GENCB *>, B<callback> is of
  72. type B<int (*callback)(int, int, BN_GENCB *)> and B<cb_arg> is a B<void *>.
  73. "Old" style callbacks are the same except they are initialised with a call
  74. to BN_GENCB_set_old and B<callback> is of type
  75. B<void (*callback)(int, int, void *)>.
  76. A callback is invoked through a call to B<BN_GENCB_call>. This will check
  77. the type of the callback and will invoke B<callback(a, b, gencb)> for new
  78. style callbacks or B<callback(a, b, cb_arg)> for old style.
  79. BN_generate_prime (deprecated) works in the same way as
  80. BN_generate_prime_ex but expects an old style callback function
  81. directly in the B<callback> parameter, and an argument to pass to it in
  82. the B<cb_arg>. Similarly BN_is_prime and BN_is_prime_fasttest are
  83. deprecated and can be compared to BN_is_prime_ex and
  84. BN_is_prime_fasttest_ex respectively.
  85. =head1 RETURN VALUES
  86. BN_generate_prime_ex() return 1 on success or 0 on error.
  87. BN_is_prime_ex(), BN_is_prime_fasttest_ex(), BN_is_prime() and
  88. BN_is_prime_fasttest() return 0 if the number is composite, 1 if it is
  89. prime with an error probability of less than 0.25^B<nchecks>, and
  90. -1 on error.
  91. BN_generate_prime() returns the prime number on success, B<NULL> otherwise.
  92. Callback functions should return 1 on success or 0 on error.
  93. The error codes can be obtained by L<ERR_get_error(3)|ERR_get_error(3)>.
  94. =head1 SEE ALSO
  95. L<bn(3)|bn(3)>, L<ERR_get_error(3)|ERR_get_error(3)>, L<rand(3)|rand(3)>
  96. =head1 HISTORY
  97. The B<cb_arg> arguments to BN_generate_prime() and to BN_is_prime()
  98. were added in SSLeay 0.9.0. The B<ret> argument to BN_generate_prime()
  99. was added in SSLeay 0.9.1.
  100. BN_is_prime_fasttest() was added in OpenSSL 0.9.5.
  101. =cut