Searched refs:BN_is_word (Results 1 – 11 of 11) sorted by relevance
| /freebsd-12-stable/crypto/openssl/doc/man3/ |
| D | BN_cmp.pod | 5 BN_cmp, BN_ucmp, BN_is_zero, BN_is_one, BN_is_word, BN_abs_is_word, BN_is_odd - BIGNUM comparison a… 16 int BN_is_word(const BIGNUM *a, const BN_ULONG w); 25 BN_is_zero(), BN_is_one(), BN_is_word() and BN_abs_is_word() test if 35 BN_is_zero(), BN_is_one() BN_is_word(), BN_abs_is_word() and 40 Prior to OpenSSL 1.1.0, BN_is_zero(), BN_is_one(), BN_is_word(),
|
| /freebsd-12-stable/crypto/openssl/crypto/bn/ |
| D | bn_prime.c | 161 if (BN_is_word(a, 2) || BN_is_word(a, 3)) in BN_is_prime_fasttest_ex() 178 return BN_is_word(a, primes[i]); in BN_is_prime_fasttest_ex()
|
| D | bn_gcd.c | 452 if (BN_is_word(D, 2)) { in int_bn_mod_inverse() 455 } else if (BN_is_word(D, 4)) { in int_bn_mod_inverse()
|
| D | bn_lib.c | 913 int BN_is_word(const BIGNUM *a, const BN_ULONG w) in BN_is_word() function
|
| /freebsd-12-stable/crypto/openssl/crypto/dh/ |
| D | dh_key.c | 159 if (BN_is_word(dh->g, DH_GENERATOR_2) && !BN_is_bit_set(dh->p, 2)) { in generate_key()
|
| /freebsd-12-stable/crypto/openssl/crypto/ec/ |
| D | ec_curve.c | 3320 || BN_is_word(cofactor, (const BN_ULONG)curve.data->cofactor)) in ec_curve_nid_from_params()
|
| /freebsd-12-stable/crypto/openssl/include/openssl/ |
| D | bn.h | 186 int BN_is_word(const BIGNUM *a, const BN_ULONG w);
|
| /freebsd-12-stable/secure/lib/libcrypto/ |
| D | Version.map | 515 BN_is_word;
|
| /freebsd-12-stable/contrib/wpa/src/crypto/ |
| D | crypto_openssl.c | 1671 mask = const_time_eq(BN_is_word(tmp, 1), 1); in crypto_bignum_legendre()
|
| /freebsd-12-stable/secure/lib/libcrypto/man/man3/ |
| D | Makefile | 837 MLINKS+= BN_cmp.3 BN_is_word.3
|
| /freebsd-12-stable/crypto/openssl/ |
| D | CHANGES | 9319 *) Fix BN_is_word() and BN_is_one() macros to take into account the 9322 Fix BN_is_word(a,w) to work correctly for w == 0. 9324 The old BN_is_word(a,w) macro is now called BN_abs_is_word(a,w) 9328 BN_is_one(), and BN_is_word().
|