/external/vboot_reference/host/lib/ |
util_misc.c | 100 BN_mod(RR, RRTemp, N, bn_ctx); 107 BN_mod(n, N, B, bn_ctx); /* n = N mod B */ 118 BN_mod(rr, RR, B, bn_ctx); /* rr = RR mod B */
|
/external/vboot_reference/utility/ |
dumpRSAPublicKey.c | 94 BN_mod(RR, RRTemp, N, bn_ctx); 101 BN_mod(n, N, B, bn_ctx); /* n = N mod B */ 113 BN_mod(rr, RR, B, bn_ctx); /* rr = RR mod B */
|
/external/openssh/ |
rsa.c | 176 (BN_mod(rsa->dmq1, rsa->d, aux, ctx) == 0) || 178 (BN_mod(rsa->dmp1, rsa->d, aux, ctx) == 0)) {
|
auth-rsa.c | 86 if (BN_mod(challenge, challenge, key->rsa->n, ctx) == 0) 87 fatal("auth_rsa_generate_challenge: BN_mod failed");
|
/external/boringssl/src/crypto/rsa/ |
rsa_impl.c | 681 if (!BN_mod(r1, I, rsa->q, ctx)) { 691 if (!BN_mod(r1, I, rsa->p, ctx)) { 715 if (!BN_mod(r0, r1, rsa->p, ctx)) { 743 if (!BN_mod(r1, I, ap->prime, ctx)) { 754 !BN_mod(m1, m1, ap->prime, ctx) || 1005 if (!BN_mod(rsa->dmp1, rsa->d, r1, ctx)) { 1010 if (!BN_mod(rsa->dmq1, rsa->d, r2, ctx)) { 1028 !BN_mod(ap->exp, rsa->d, ap->exp, ctx) ||
|
rsa.c | 651 !BN_mod(&dmp1, key->d, &pm1, ctx) || 653 !BN_mod(&dmq1, key->d, &qm1, ctx) || 796 !BN_mod(rsa->dmp1, rsa->d, rem, ctx) || 798 !BN_mod(rsa->dmq1, rsa->d, rem, ctx) ||
|
/system/core/libcrypto_utils/ |
android_pubkey.c | 140 !BN_mod(n0inv, key->n, r32, ctx) ||
|
/external/boringssl/src/crypto/dsa/ |
dsa.c | 323 !BN_mod(c, X, r0, ctx) || 699 if (!BN_mod(&u1, &t1, dsa->q, ctx)) { 874 if (!BN_mod(r, r, dsa->q, ctx)) {
|
/external/boringssl/src/crypto/bn/ |
div.c | 390 if (!(BN_mod(r, m, d, ctx))) { 479 return BN_mod(r, r, m, ctx);
|
prime.c | 744 if (!BN_mod(t1, rnd, add, ctx)) { [all...] |
bn_test.cc | [all...] |
/external/boringssl/src/include/openssl/ |
bn.h | 532 /* BN_mod is a helper macro that calls |BN_div| and discards the quotient. */ 533 #define BN_mod(rem, numerator, divisor, ctx) \ 536 /* BN_nnmod is a non-negative modulo function. It acts like |BN_mod|, but 0 <= [all...] |
/external/tpm2/ |
CpriECC.c | 730 || BN_mod(bnD, bnD, bnNm1, context) != 1) [all...] |
/device/linaro/bootloader/edk2/CryptoPkg/Library/OpensslLib/ |
OpensslLib.inf | 242 $(OPENSSL_PATH)/crypto/bn/bn_mod.c
|
/external/wpa_supplicant_8/src/crypto/ |
crypto_openssl.c | 1187 res = BN_mod((BIGNUM *) c, (const BIGNUM *) a, (const BIGNUM *) b, [all...] |
/external/wpa_supplicant_8/src/eap_peer/ |
eap_pwd.c | 401 BN_mod(data->my_scalar, data->my_scalar, data->grp->order,
|
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_pwd.c | 225 BN_mod(data->my_scalar, data->my_scalar, data->grp->order,
|