summaryrefslogtreecommitdiffstats
path: root/doc/crypto/bn.pod
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-01-27 19:31:26 +0000
committerUlf Möller <ulf@openssl.org>2000-01-27 19:31:26 +0000
commit38e33cef15e7965ad9fd9db4b08fb2f5dc1bc573 (patch)
tree27216af3df8adcdc381475ca7011f43fcf34e7fe /doc/crypto/bn.pod
parent0c23524963064a3bf8206b28c97f88e157d29fa7 (diff)
Document DSA and SHA.
New function BN_pseudo_rand(). Use BN_prime_checks_size(BN_num_bits(w)) rounds of Miller-Rabin when generating DSA primes (why not use BN_is_prime()?)
Diffstat (limited to 'doc/crypto/bn.pod')
-rw-r--r--doc/crypto/bn.pod1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/crypto/bn.pod b/doc/crypto/bn.pod
index ca48019b96..3d4840f095 100644
--- a/doc/crypto/bn.pod
+++ b/doc/crypto/bn.pod
@@ -59,6 +59,7 @@ bn - Multiprecision integer arithmetics
unsigned long BN_get_word(BIGNUM *a);
int BN_rand(BIGNUM *rnd, int bits, int top,int bottom);
+ int BN_pseudo_rand(BIGNUM *rnd, int bits, int top,int bottom);
BIGNUM *BN_generate_prime(BIGNUM *ret,int bits,int safe,BIGNUM *add,
BIGNUM *rem,void (*callback)(int,int,void *),void *cb_arg);