HomeSort by relevance Sort by last modified time
    Searched refs:BN_is_odd (Results 1 - 16 of 16) sorted by null

  /external/boringssl/src/crypto/fipsmodule/bn/
montgomery_inv.c 38 assert(BN_is_odd(n));
168 assert(BN_is_odd(n));
jacobi.c 72 if (!BN_is_odd(b)) {
gcd.c 125 if (BN_is_odd(a)) {
126 if (BN_is_odd(b)) {
151 if (BN_is_odd(b)) {
236 if (!BN_is_odd(n)) {
293 if (BN_is_odd(X)) {
315 if (BN_is_odd(Y)) {
426 if (!BN_is_odd(n)) {
cmp.c 211 int BN_is_odd(const BIGNUM *bn) {
prime.c 491 if (!BN_is_odd(a)) {
543 if (!BN_is_odd(w) || BN_cmp_word(w, 3) <= 0) {
    [all...]
exponentiation.c 160 if (BN_is_odd(p)) {
567 if (BN_is_odd(m)) {
584 if (!BN_is_odd(m)) {
865 if (!BN_is_odd(m)) {
    [all...]
montgomery.c 181 if (!BN_is_odd(mod)) {
sqrt.c 73 if (!BN_is_odd(p) || BN_abs_is_word(p, 1)) {
bn_test.cc 476 if (BN_is_odd(m.get())) {
516 if (BN_is_odd(m.get())) {
556 if (BN_is_odd(m.get())) {
    [all...]
  /external/boringssl/src/crypto/fipsmodule/ec/
oct.c 129 BN_is_odd(y)) {
370 if (y_bit != BN_is_odd(y)) {
379 if (y_bit != BN_is_odd(y)) {
simple.c 127 if (BN_num_bits(p) <= 2 || !BN_is_odd(p)) {
545 if (BN_is_odd(n0) && !BN_add(n0, n0, p)) {
  /external/openssh/
rsa.c 80 if (BN_num_bits(key->e) < 2 || !BN_is_odd(key->e))
  /external/boringssl/src/crypto/rsa_extra/
rsa_asn1.c 112 if (!BN_is_odd(ret->e) ||
  /external/wpa_supplicant_8/src/eap_common/
eap_pwd_common.c 241 if (BN_is_odd(rnd))
  /external/boringssl/src/crypto/fipsmodule/rsa/
rsa.c 730 !BN_is_odd(key->n) ||
731 !BN_is_odd(key->e) ||
  /external/boringssl/src/include/openssl/
bn.h 460 /* BN_is_odd returns one if |bn| is odd and zero otherwise. */
461 OPENSSL_EXPORT int BN_is_odd(const BIGNUM *bn);
    [all...]

Completed in 515 milliseconds