Home
last modified time | relevance | path

Searched refs:BN_mod_inverse (Results 1 - 25 of 29) sorted by relevance

12

/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_x931p.c93 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 Dbn_rsa_fips186_4.c294 && 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 Dbn_mont.c316 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 Dbn_gcd.c14 * 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 Dbn_x931p.c93 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 Dbn_rsa_fips186_4.c294 && 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 Dbn_mont.c316 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 Dbn_gcd.c14 * 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 Drsa_gen.c221 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 Drsa_chk.c190 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 Drsa_x931g.c117 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 Drsa_crpt.c110 ret = BN_mod_inverse(NULL, d, r0, ctx); in rsa_get_public_exp()
H A Drsa_sp800_56b_gen.c269 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 Drsa_gen.c221 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 Drsa_chk.c190 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 Drsa_x931g.c117 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 Drsa_crpt.c110 ret = BN_mod_inverse(NULL, d, r0, ctx); in rsa_get_public_exp()
H A Drsa_sp800_56b_gen.c269 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 Ddsa_ossl.c168 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 Ddsa_ossl.c168 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 Dbn.rs116 pub fn BN_mod_inverse( in BN_mod_inverse() functions
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dbn.rs717 #[corresponds(BN_mod_inverse)]
725 cvt_p(ffi::BN_mod_inverse( in mod_inverse()
/third_party/openssl/ohos_lite/include/openssl/
H A Dbn.h59 * 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 Dbn.h65 * BN_mod_inverse() will call bn_mod_inverse_no_branch.
347 BIGNUM *BN_mod_inverse(BIGNUM *ret,
/third_party/openssl/include/openssl/
H A Dbn.h65 * BN_mod_inverse() will call bn_mod_inverse_no_branch.
347 BIGNUM *BN_mod_inverse(BIGNUM *ret,

Completed in 16 milliseconds

12