Home
last modified time | relevance | path

Searched refs:BN_pseudo_rand (Results 1 – 11 of 11) sorted by relevance

/minix3/crypto/external/bsd/openssl/dist/doc/crypto/
H A DBN_rand.pod5 BN_rand, BN_pseudo_rand - generate pseudo-random number
13 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom);
30 BN_pseudo_rand() does the same, but pseudo-random numbers generated by
37 BN_pseudo_rand_range() does the same, but is based on BN_pseudo_rand(),
55 BN_pseudo_rand() was added in OpenSSL 0.9.5. The B<top> == -1 case
H A Dbn.pod73 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom);
/minix3/crypto/external/bsd/openssl/dist/crypto/bn/
H A Ddivtest.c32 BN_pseudo_rand(a, Rand(), 0, 0); in main()
33 BN_pseudo_rand(b, Rand(), 0, 0); in main()
H A Dbn_rand.c209 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_pseudo_rand() function
225 pseudo ? BN_pseudo_rand : BN_rand; in bn_rand_range()
H A Dexpspeed.c258 if (!BN_pseudo_rand(a, sizes[i], 1, 0)) in do_mul_exp()
261 if (!BN_pseudo_rand(b, sizes[i], 1, 0)) in do_mul_exp()
265 if (!BN_pseudo_rand(c, sizes[i], 1, 1)) in do_mul_exp()
H A Dbn_sqrt.c232 if (!BN_pseudo_rand(y, BN_num_bits(p), 0, 0)) in BN_mod_sqrt()
H A Dbn.h449 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom);
/minix3/crypto/external/bsd/openssl/dist/crypto/ec/
H A Dectest.c144 if (!BN_pseudo_rand(r[i], BN_num_bits(s), 0, 0))
149 if (!BN_pseudo_rand(r0[i], BN_num_bits(s), 0, 0))
918 if (!BN_pseudo_rand(y, BN_num_bits(y), 0, 0)) in prime_field_tests()
934 if (!BN_pseudo_rand(x, BN_num_bits(y) - 1, 0, 0)) in prime_field_tests()
1428 if (!BN_pseudo_rand(y, BN_num_bits(y), 0, 0)) in char2_field_tests()
1444 if (!BN_pseudo_rand(x, BN_num_bits(y) - 1, 0, 0)) in char2_field_tests()
/minix3/crypto/external/bsd/openssl/dist/apps/
H A Dapps.c1721 if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0)) in rand_serial()
/minix3/crypto/external/bsd/openssl/dist/util/
H A Dlibeay.num1746 BN_pseudo_rand 2239 EXIST::FUNCTION:
/minix3/crypto/external/bsd/openssl/dist/
H A DCHANGES6408 so use BN_pseudo_rand_range() instead of using BN_pseudo_rand()
6413 equivalent based on BN_pseudo_rand() instead of BN_rand().
7938 *) New function BN_pseudo_rand().