/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_x931p.c | 93 if (!BN_mod_inverse(p, p2, p1, ctx)) in BN_X931_derive_prime_ex() 99 if (!BN_mod_inverse(t, p1, p2, ctx)) in BN_X931_derive_prime_ex()
|
H A D | bn_rsa_fips186_4.c | 294 && BN_mod_inverse(R, r2, r1x2, ctx) in ossl_bn_rsa_fips186_4_derive_prime() 296 && BN_mod_inverse(tmp, r1x2, r2, ctx) in ossl_bn_rsa_fips186_4_derive_prime()
|
H A D | bn_mont.c | 316 else if ((BN_mod_inverse(Ri, R, &tmod, ctx)) == NULL) in BN_MONT_CTX_set() 351 else if ((BN_mod_inverse(Ri, R, &tmod, ctx)) == NULL) in BN_MONT_CTX_set() 379 if ((BN_mod_inverse(Ri, R, &mont->N, ctx)) == NULL) in BN_MONT_CTX_set()
|
H A D | bn_gcd.c | 14 * bn_mod_inverse_no_branch is a special version of BN_mod_inverse. It does 515 BIGNUM *BN_mod_inverse(BIGNUM *in, in BN_mod_inverse() function
|
/third_party/openssl/crypto/bn/ |
H A D | bn_x931p.c | 93 if (!BN_mod_inverse(p, p2, p1, ctx)) in BN_X931_derive_prime_ex() 99 if (!BN_mod_inverse(t, p1, p2, ctx)) in BN_X931_derive_prime_ex()
|
H A D | bn_rsa_fips186_4.c | 294 && BN_mod_inverse(R, r2, r1x2, ctx) in ossl_bn_rsa_fips186_4_derive_prime() 296 && BN_mod_inverse(tmp, r1x2, r2, ctx) in ossl_bn_rsa_fips186_4_derive_prime()
|
H A D | bn_mont.c | 316 else if ((BN_mod_inverse(Ri, R, &tmod, ctx)) == NULL) in BN_MONT_CTX_set() 351 else if ((BN_mod_inverse(Ri, R, &tmod, ctx)) == NULL) in BN_MONT_CTX_set() 379 if ((BN_mod_inverse(Ri, R, &mont->N, ctx)) == NULL) in BN_MONT_CTX_set()
|
H A D | bn_gcd.c | 14 * bn_mod_inverse_no_branch is a special version of BN_mod_inverse. It does 515 BIGNUM *BN_mod_inverse(BIGNUM *in, in BN_mod_inverse() function
|
/third_party/node/deps/openssl/openssl/crypto/rsa/ |
H A D | rsa_gen.c | 221 if (BN_mod_inverse(r1, r2, rsa->e, ctx) != NULL) { in rsa_multiprime_keygen() 348 if (!BN_mod_inverse(rsa->d, rsa->e, pr0, ctx)) { in rsa_multiprime_keygen() 393 if (!BN_mod_inverse(rsa->iqmp, rsa->q, p, ctx)) { in rsa_multiprime_keygen() 402 if (!BN_mod_inverse(pinfo->t, pinfo->pp, p, ctx)) { in rsa_multiprime_keygen()
|
H A D | rsa_chk.c | 190 if (!BN_mod_inverse(i, key->q, key->p, ctx)) { in rsa_validate_keypair_multiprime() 216 if (!BN_mod_inverse(i, pinfo->pp, pinfo->r, ctx)) { in rsa_validate_keypair_multiprime()
|
H A D | rsa_x931g.c | 117 rsa->d = BN_mod_inverse(NULL, rsa->e, r0, ctx2); /* d */ in RSA_X931_derive_ex() 136 rsa->iqmp = BN_mod_inverse(NULL, rsa->q, rsa->p, ctx2); in RSA_X931_derive_ex()
|
H A D | rsa_crpt.c | 110 ret = BN_mod_inverse(NULL, d, r0, ctx); in rsa_get_public_exp()
|
H A D | rsa_sp800_56b_gen.c | 269 if (BN_mod_inverse(rsa->d, e, lcm, ctx) == NULL) in ossl_rsa_sp800_56b_derive_params_from_pq() 308 if (BN_mod_inverse(rsa->iqmp, rsa->q, rsa->p, ctx) == NULL) in ossl_rsa_sp800_56b_derive_params_from_pq()
|
/third_party/openssl/crypto/rsa/ |
H A D | rsa_gen.c | 221 if (BN_mod_inverse(r1, r2, rsa->e, ctx) != NULL) { in rsa_multiprime_keygen() 348 if (!BN_mod_inverse(rsa->d, rsa->e, pr0, ctx)) { in rsa_multiprime_keygen() 393 if (!BN_mod_inverse(rsa->iqmp, rsa->q, p, ctx)) { in rsa_multiprime_keygen() 402 if (!BN_mod_inverse(pinfo->t, pinfo->pp, p, ctx)) { in rsa_multiprime_keygen()
|
H A D | rsa_chk.c | 190 if (!BN_mod_inverse(i, key->q, key->p, ctx)) { in rsa_validate_keypair_multiprime() 216 if (!BN_mod_inverse(i, pinfo->pp, pinfo->r, ctx)) { in rsa_validate_keypair_multiprime()
|
H A D | rsa_x931g.c | 117 rsa->d = BN_mod_inverse(NULL, rsa->e, r0, ctx2); /* d */ in RSA_X931_derive_ex() 136 rsa->iqmp = BN_mod_inverse(NULL, rsa->q, rsa->p, ctx2); in RSA_X931_derive_ex()
|
H A D | rsa_crpt.c | 110 ret = BN_mod_inverse(NULL, d, r0, ctx); in rsa_get_public_exp()
|
H A D | rsa_sp800_56b_gen.c | 269 if (BN_mod_inverse(rsa->d, e, lcm, ctx) == NULL) in ossl_rsa_sp800_56b_derive_params_from_pq() 308 if (BN_mod_inverse(rsa->iqmp, rsa->q, rsa->p, ctx) == NULL) in ossl_rsa_sp800_56b_derive_params_from_pq()
|
/third_party/node/deps/openssl/openssl/crypto/dsa/ |
H A D | dsa_ossl.c | 168 if (BN_mod_inverse(blind, blind, dsa->params.q, ctx) == NULL) in ossl_dsa_do_sign_int() 383 if ((BN_mod_inverse(u2, s, dsa->params.q, ctx)) == NULL) in dsa_do_verify()
|
/third_party/openssl/crypto/dsa/ |
H A D | dsa_ossl.c | 168 if (BN_mod_inverse(blind, blind, dsa->params.q, ctx) == NULL) in ossl_dsa_do_sign_int() 383 if ((BN_mod_inverse(u2, s, dsa->params.q, ctx)) == NULL) in dsa_do_verify()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | bn.rs | 116 pub fn BN_mod_inverse( in BN_mod_inverse() functions
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | bn.rs | 717 #[corresponds(BN_mod_inverse)] 725 cvt_p(ffi::BN_mod_inverse( in mod_inverse()
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | bn.h | 59 * BN_mod_inverse() will call bn_mod_inverse_no_branch. 318 BIGNUM *BN_mod_inverse(BIGNUM *ret,
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | bn.h | 65 * BN_mod_inverse() will call bn_mod_inverse_no_branch. 347 BIGNUM *BN_mod_inverse(BIGNUM *ret,
|
/third_party/openssl/include/openssl/ |
H A D | bn.h | 65 * BN_mod_inverse() will call bn_mod_inverse_no_branch. 347 BIGNUM *BN_mod_inverse(BIGNUM *ret,
|