Home
last modified time | relevance | path

Searched refs:BN_is_word (Results 1 – 12 of 12) sorted by relevance

/freebsd-11-stable/crypto/openssl/doc/crypto/
HDBN_cmp.pod5 BN_cmp, BN_ucmp, BN_is_zero, BN_is_one, BN_is_word, BN_is_odd - BIGNUM comparison and test functions
16 int BN_is_word(BIGNUM *a, BN_ULONG w);
24 BN_is_zero(), BN_is_one() and BN_is_word() test if B<a> equals 0, 1,
27 BN_is_zero(), BN_is_one(), BN_is_word() and BN_is_odd() are macros.
35 BN_is_zero(), BN_is_one() BN_is_word() and BN_is_odd() return 1 if
44 BN_cmp(), BN_ucmp(), BN_is_zero(), BN_is_one() and BN_is_word() are
HDbn.pod63 int BN_is_word(BIGNUM *a, BN_ULONG w);
/freebsd-11-stable/crypto/openssl/crypto/dh/
HDdh_check.c115 } else if (BN_is_word(dh->g, DH_GENERATOR_2)) { in DH_check()
121 else if (BN_is_word(dh->g, DH_GENERATOR_3)) { in DH_check()
127 else if (BN_is_word(dh->g, DH_GENERATOR_5)) { in DH_check()
/freebsd-11-stable/crypto/openssl/crypto/bn/
HDbn_gcd.c474 if (BN_is_word(D, 2)) { in BN_mod_inverse()
477 } else if (BN_is_word(D, 4)) { in BN_mod_inverse()
HDbn_prime.c265 return BN_is_word(a, 2); in BN_is_prime_fasttest_ex()
HDbn.h456 # define BN_is_word(a,w) (BN_abs_is_word((a),(w)) && (!(w) || !(a)->neg)) macro
HDbntest.c1858 if (BN_is_word(r, 1)) in test_kron()
/freebsd-11-stable/crypto/openssl/crypto/ec/
HDec_curve.c3344 || BN_is_word(cofactor, (const BN_ULONG)curve.data->cofactor)) in ec_curve_nid_from_params()
/freebsd-11-stable/contrib/wpa/src/crypto/
HDcrypto_openssl.c1537 mask = const_time_eq(BN_is_word(tmp, 1), 1); in crypto_bignum_legendre()
/freebsd-11-stable/secure/lib/libcrypto/
HDMakefile.man388 MLINKS+= BN_cmp.3 BN_is_word.3
/freebsd-11-stable/crypto/openssl/
HDCHANGES7041 *) Fix BN_is_word() and BN_is_one() macros to take into account the
7044 Fix BN_is_word(a,w) to work correctly for w == 0.
7046 The old BN_is_word(a,w) macro is now called BN_abs_is_word(a,w)
7050 BN_is_one(), and BN_is_word().
/freebsd-11-stable/crypto/openssl/doc/
HDssleay.txt1691 int BN_is_word(a,w)