Home
last modified time | relevance | path

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

/freebsd-9-stable/crypto/openssl/doc/crypto/
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
Dbn.pod73 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom);
/freebsd-9-stable/crypto/openssl/crypto/bn/
Ddivtest.c29 BN_pseudo_rand(a, Rand(), 0, 0); in main()
30 BN_pseudo_rand(b, Rand(), 0, 0); in main()
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()
Dbn_rand.c208 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) in BN_pseudo_rand() function
224 pseudo ? BN_pseudo_rand : BN_rand; in bn_rand_range()
Dbn_sqrt.c232 if (!BN_pseudo_rand(y, BN_num_bits(p), 0, 0)) in BN_mod_sqrt()
Dbn.h423 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom);
/freebsd-9-stable/tools/tools/crypto/
Dcryptokeytest.c225 BN_pseudo_rand(a, 1023, 0, 0); in testit()
226 BN_pseudo_rand(b, 1023, 0, 0); in testit()
227 BN_pseudo_rand(c, 1024, 0, 0); in testit()
/freebsd-9-stable/crypto/openssl/crypto/ec/
Dectest.c147 if (!BN_pseudo_rand(r[i], BN_num_bits(s), 0, 0))
152 if (!BN_pseudo_rand(r0[i], BN_num_bits(s), 0, 0))
914 if (!BN_pseudo_rand(y, BN_num_bits(y), 0, 0)) in prime_field_tests()
930 if (!BN_pseudo_rand(x, BN_num_bits(y) - 1, 0, 0)) in prime_field_tests()
1432 if (!BN_pseudo_rand(y, BN_num_bits(y), 0, 0)) in char2_field_tests()
1448 if (!BN_pseudo_rand(x, BN_num_bits(y) - 1, 0, 0)) in char2_field_tests()
/freebsd-9-stable/secure/lib/libcrypto/
DMakefile.man338 MLINKS+= BN_rand.3 BN_pseudo_rand.3
/freebsd-9-stable/crypto/openssl/apps/
Dapps.c1611 if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0)) in rand_serial()
/freebsd-9-stable/crypto/openssl/util/
Dlibeay.num1746 BN_pseudo_rand 2239 EXIST::FUNCTION:
/freebsd-9-stable/crypto/openssl/
DCHANGES5089 so use BN_pseudo_rand_range() instead of using BN_pseudo_rand()
5094 equivalent based on BN_pseudo_rand() instead of BN_rand().
6619 *) New function BN_pseudo_rand().