Symbol: BN_mod_mul_montgomery
crypto/openssl/crypto/bn/bn_blind.c
152
ret = BN_mod_mul_montgomery(n, n, b->A, b->m_ctx, ctx);
crypto/openssl/crypto/bn/bn_exp.c
1127
if (!BN_mod_mul_montgomery(rr, &tmp, &am, mont, ctx))
crypto/openssl/crypto/bn/bn_exp.c
1254
if (!BN_mod_mul_montgomery(r, r, r, mont, ctx))
crypto/openssl/crypto/bn/bn_exp.c
472
if (!BN_mod_mul_montgomery(rr, r, val[0], mont, ctx))
crypto/openssl/crypto/bn/bn_exp2.c
112
if (!BN_mod_mul_montgomery(d, val2[0], val2[0], mont, ctx))
crypto/openssl/crypto/bn/bn_exp2.c
117
if (((val2[i] = BN_CTX_get(ctx)) == NULL) || !BN_mod_mul_montgomery(val2[i], val2[i - 1], d, mont, ctx))
crypto/openssl/crypto/bn/bn_exp2.c
135
if (!BN_mod_mul_montgomery(r, r, r, mont, ctx))
crypto/openssl/crypto/bn/bn_exp2.c
175
if (!BN_mod_mul_montgomery(r, r, val1[wvalue1 >> 1], mont, ctx))
crypto/openssl/crypto/bn/bn_exp2.c
183
if (!BN_mod_mul_montgomery(r, r, val2[wvalue2 >> 1], mont, ctx))
crypto/openssl/crypto/bn/bn_exp2.c
85
if (!BN_mod_mul_montgomery(d, val1[0], val1[0], mont, ctx))
crypto/openssl/crypto/bn/bn_exp2.c
90
if (((val1[i] = BN_CTX_get(ctx)) == NULL) || !BN_mod_mul_montgomery(val1[i], val1[i - 1], d, mont, ctx))
crypto/openssl/crypto/bn/bn_lib.c
1078
return BN_mod_mul_montgomery(r, a, &(mont->RR), mont, ctx);
crypto/openssl/crypto/ec/ecdsa_ossl.c
376
|| !BN_mod_mul_montgomery(s, s, ckinv, group->mont_data, ctx)) {
crypto/openssl/crypto/ec/ecp_mont.c
204
return BN_mod_mul_montgomery(r, a, b, group->field_data1, ctx);
crypto/openssl/crypto/ec/ecp_mont.c
215
return BN_mod_mul_montgomery(r, a, a, group->field_data1, ctx);
crypto/openssl/include/openssl/bn.h
408
int BN_mod_mul_montgomery(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
crypto/openssl/test/bntest.c
1643
|| !TEST_true(BN_mod_mul_montgomery(ret, a_tmp, b_tmp,
crypto/openssl/test/bntest.c
1691
|| !TEST_true(BN_mod_mul_montgomery(ret, a_tmp, a_tmp,
crypto/openssl/test/bntest.c
521
&& TEST_true(BN_mod_mul_montgomery(c, a, b, mont, ctx))
crypto/openssl/test/bntest.c
522
&& TEST_true(BN_mod_mul_montgomery(d, b, a, mont, ctx))
crypto/openssl/test/bntest.c
533
&& TEST_true(BN_mod_mul_montgomery(c, a, a, mont, ctx))
crypto/openssl/test/bntest.c
534
&& TEST_true(BN_mod_mul_montgomery(d, a, b, mont, ctx))
crypto/openssl/test/bntest.c
580
if (!TEST_true(BN_mod_mul_montgomery(c, a, a, mont, ctx))
crypto/openssl/test/bntest.c
581
|| !TEST_true(BN_mod_mul_montgomery(d, a, b, mont, ctx))
crypto/openssl/test/bntest.c
594
&& TEST_false(BN_mod_mul_montgomery(d, a, a, mont, ctx))))