Symbol: BN_mod_mul
crypto/openssl/crypto/bn/bn_blind.c
113
if (!BN_mod_mul(b->Ai, b->Ai, b->Ai, b->mod, ctx)
crypto/openssl/crypto/bn/bn_blind.c
114
|| !BN_mod_mul(b->A, b->A, b->A, b->mod, ctx))
crypto/openssl/crypto/bn/bn_blind.c
154
ret = BN_mod_mul(n, n, b->A, b->mod, ctx);
crypto/openssl/crypto/bn/bn_blind.c
194
ret = BN_mod_mul(n, n, r, b->mod, ctx);
crypto/openssl/crypto/bn/bn_exp.c
1355
if (!BN_mod_mul(d, val[0], val[0], m, ctx))
crypto/openssl/crypto/bn/bn_exp.c
1359
if (((val[i] = BN_CTX_get(ctx)) == NULL) || !BN_mod_mul(val[i], val[i - 1], d, m, ctx))
crypto/openssl/crypto/bn/bn_exp.c
1386
if (!BN_mod_mul(r, r, r, m, ctx))
crypto/openssl/crypto/bn/bn_exp.c
1415
if (!BN_mod_mul(r, r, r, m, ctx))
crypto/openssl/crypto/bn/bn_exp.c
1420
if (!BN_mod_mul(r, r, val[wvalue >> 1], m, ctx))
crypto/openssl/crypto/bn/bn_prime.c
423
if (!BN_copy(x, z) || !BN_mod_mul(z, x, x, w, ctx))
crypto/openssl/crypto/bn/bn_prime.c
434
if (!BN_copy(x, z) || !BN_mod_mul(z, x, x, w, ctx))
crypto/openssl/crypto/bn/bn_sqrt.c
152
if (!BN_mod_mul(t, t, y, p, ctx))
crypto/openssl/crypto/bn/bn_sqrt.c
158
if (!BN_mod_mul(x, A, b, p, ctx))
crypto/openssl/crypto/bn/bn_sqrt.c
160
if (!BN_mod_mul(x, x, t, p, ctx))
crypto/openssl/crypto/bn/bn_sqrt.c
281
if (!BN_mod_mul(b, b, A, p, ctx))
crypto/openssl/crypto/bn/bn_sqrt.c
285
if (!BN_mod_mul(x, x, A, p, ctx))
crypto/openssl/crypto/bn/bn_sqrt.c
313
if (!BN_mod_mul(t, t, t, p, ctx))
crypto/openssl/crypto/bn/bn_sqrt.c
332
if (!BN_mod_mul(y, t, t, p, ctx))
crypto/openssl/crypto/bn/bn_sqrt.c
334
if (!BN_mod_mul(x, x, t, p, ctx))
crypto/openssl/crypto/bn/bn_sqrt.c
336
if (!BN_mod_mul(b, b, y, p, ctx))
crypto/openssl/crypto/dsa/dsa_ossl.c
156
if (!BN_mod_mul(tmp, blind, dsa->priv_key, dsa->params.q, ctx))
crypto/openssl/crypto/dsa/dsa_ossl.c
158
if (!BN_mod_mul(tmp, tmp, ret->r, dsa->params.q, ctx))
crypto/openssl/crypto/dsa/dsa_ossl.c
162
if (!BN_mod_mul(blindm, blind, m, dsa->params.q, ctx))
crypto/openssl/crypto/dsa/dsa_ossl.c
170
if (!BN_mod_mul(ret->s, ret->s, kinv, dsa->params.q, ctx))
crypto/openssl/crypto/dsa/dsa_ossl.c
176
if (!BN_mod_mul(ret->s, ret->s, blind, dsa->params.q, ctx))
crypto/openssl/crypto/dsa/dsa_ossl.c
418
if (!BN_mod_mul(u1, u1, u2, dsa->params.q, ctx))
crypto/openssl/crypto/dsa/dsa_ossl.c
422
if (!BN_mod_mul(u2, r, u2, dsa->params.q, ctx))
crypto/openssl/crypto/ec/ecdsa_ossl.c
514
if (!BN_mod_mul(u1, m, u2, order, ctx)) {
crypto/openssl/crypto/ec/ecdsa_ossl.c
519
if (!BN_mod_mul(u2, sig->r, u2, order, ctx)) {
crypto/openssl/crypto/ec/ecp_oct.c
65
if (!BN_mod_mul(tmp1, tmp2, x_, group->field, ctx))
crypto/openssl/crypto/ec/ecp_oct.c
81
if (!BN_mod_mul(tmp2, tmp2, x, group->field, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
1365
return BN_mod_mul(r, a, b, group->field, ctx);
crypto/openssl/crypto/ec/ecp_smpl.c
297
if (!BN_mod_mul(tmp_2, tmp_1, a, p, ctx))
crypto/openssl/crypto/ec/ecp_smpl.c
591
if (!BN_mod_mul(Z_3, Z_2, Z_1, group->field, ctx))
crypto/openssl/crypto/rsa/rsa_chk.c
150
if (!BN_mod_mul(i, key->d, key->e, m, ctx)) {
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
210
&& BN_mod_mul(r, rsa->e, rsa->d, lcm, ctx)
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
65
&& BN_mod_mul(r, rsa->dmp1, rsa->e, p1, ctx)
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
68
&& BN_mod_mul(r, rsa->dmq1, rsa->e, q1, ctx)
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
71
&& BN_mod_mul(r, rsa->iqmp, rsa->q, rsa->p, ctx)
crypto/openssl/crypto/sm2/sm2_sign.c
297
|| !BN_mod_mul(tmp, dA, r, order, ctx)
crypto/openssl/crypto/sm2/sm2_sign.c
299
|| !BN_mod_mul(s, s, tmp, order, ctx)) {
crypto/openssl/crypto/srp/srp_lib.c
123
|| !BN_mod_mul(kv, v, k, N, bn_ctx)
crypto/openssl/crypto/srp/srp_lib.c
231
if (!BN_mod_mul(tmp2, tmp, k, N, bn_ctx))
crypto/openssl/crypto/srp/srp_lib.c
92
if (!BN_mod_mul(tmp, A, tmp, N, bn_ctx))
crypto/openssl/include/openssl/bn.h
286
int BN_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m,
crypto/openssl/test/bntest.c
1627
if (!TEST_true(BN_mod_mul(ret, a, b, m, ctx))
crypto/openssl/test/bntest.c
2539
if (!TEST_false(BN_mod_mul(a, BN_value_one(), BN_value_one(), zero, ctx)))