From: Richard Levitte Date: Thu, 27 Jan 2000 22:07:42 +0000 (+0000) Subject: Declare BN_pseudo_rand(). X-Git-Tag: OpenSSL_0_9_5beta1~168 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f95a9f678a2336b8cd3aaeb99cb9cda143916e27;p=oweals%2Fopenssl.git Declare BN_pseudo_rand(). --- diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h index aade57988c..93e2f6f2bd 100644 --- a/crypto/bn/bn.h +++ b/crypto/bn/bn.h @@ -336,6 +336,7 @@ BN_CTX *BN_CTX_new(void); void BN_CTX_init(BN_CTX *c); void BN_CTX_free(BN_CTX *c); int BN_rand(BIGNUM *rnd, int bits, int top,int bottom); +int BN_pseudo_rand(BIGNUM *rnd, int bits, int top,int bottom); int BN_num_bits(const BIGNUM *a); int BN_num_bits_word(BN_ULONG); BIGNUM *BN_new(void);