Symbol: BN_mod_mul
crypto/libressl/crypto/bn/bn_blind.c
210
if (!BN_mod_mul(b->A, b->A, b->A, b->mod, ctx))
crypto/libressl/crypto/bn/bn_blind.c
212
if (!BN_mod_mul(b->Ai, b->Ai, b->Ai, b->mod, ctx))
crypto/libressl/crypto/bn/bn_blind.c
253
if (!BN_mod_mul(n, n,b->A, b->mod, ctx))
crypto/libressl/crypto/bn/bn_blind.c
273
ret = BN_mod_mul(n, n, r, b->mod, ctx);
crypto/libressl/crypto/bn/bn_blind.c
279
ret = BN_mod_mul(n, n, b->Ai, b->mod, ctx);
crypto/libressl/crypto/bn/bn_bpsw.c
81
if (!BN_mod_mul(U, U, V, n, ctx))
crypto/libressl/crypto/bn/bn_exp.c
1104
if (!BN_mod_mul(d, val[0], val[0], m, ctx))
crypto/libressl/crypto/bn/bn_exp.c
1109
!BN_mod_mul(val[i], val[i - 1], d,m, ctx))
crypto/libressl/crypto/bn/bn_exp.c
1127
if (!BN_mod_mul(r, r, r, m, ctx))
crypto/libressl/crypto/bn/bn_exp.c
1156
if (!BN_mod_mul(r, r, r, m, ctx))
crypto/libressl/crypto/bn/bn_exp.c
1161
if (!BN_mod_mul(r, r, val[wvalue >> 1], m, ctx))
crypto/libressl/crypto/bn/bn_prime.c
394
if (!BN_mod_mul(w, w, w, a, ctx)) /* w := w^2 mod a */
crypto/libressl/crypto/bn/bn_sqrt.c
201
if (!BN_mod_mul(t, t, y, p, ctx))
crypto/libressl/crypto/bn/bn_sqrt.c
207
if (!BN_mod_mul(x, A, b, p, ctx))
crypto/libressl/crypto/bn/bn_sqrt.c
209
if (!BN_mod_mul(x, x, t, p, ctx))
crypto/libressl/crypto/bn/bn_sqrt.c
329
if (!BN_mod_mul(b, b, A, p, ctx))
crypto/libressl/crypto/bn/bn_sqrt.c
333
if (!BN_mod_mul(x, x, A, p, ctx))
crypto/libressl/crypto/bn/bn_sqrt.c
377
if (!BN_mod_mul(y, t, t, p, ctx))
crypto/libressl/crypto/bn/bn_sqrt.c
379
if (!BN_mod_mul(x, x, t, p, ctx))
crypto/libressl/crypto/bn/bn_sqrt.c
381
if (!BN_mod_mul(b, b, y, p, ctx))
crypto/libressl/crypto/dsa/dsa_ossl.c
161
if (!BN_mod_mul(&bxr, &b, dsa->priv_key, dsa->q, ctx)) /* bx */
crypto/libressl/crypto/dsa/dsa_ossl.c
163
if (!BN_mod_mul(&bxr, &bxr, r, dsa->q, ctx)) /* bxr */
crypto/libressl/crypto/dsa/dsa_ossl.c
165
if (!BN_mod_mul(&bm, &b, &m, dsa->q, ctx)) /* bm */
crypto/libressl/crypto/dsa/dsa_ossl.c
169
if (!BN_mod_mul(s, s, kinv, dsa->q, ctx)) /* s = b(m + xr)k^-1 */
crypto/libressl/crypto/dsa/dsa_ossl.c
171
if (!BN_mod_mul(s, s, &binv, dsa->q, ctx)) /* s = (m + xr)k^-1 */
crypto/libressl/crypto/dsa/dsa_ossl.c
371
if (!BN_mod_mul(&u1, &u1, &u2, dsa->q, ctx))
crypto/libressl/crypto/dsa/dsa_ossl.c
375
if (!BN_mod_mul(&u2, sig->r, &u2, dsa->q, ctx))
crypto/libressl/crypto/ec/ecp_oct.c
114
if (!BN_mod_mul(tmp1, tmp2, x_, &group->field, ctx))
crypto/libressl/crypto/ec/ecp_oct.c
130
if (!BN_mod_mul(tmp2, tmp2, x, &group->field, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
1407
return BN_mod_mul(r, a, b, &group->field, ctx);
crypto/libressl/crypto/ec/ecp_smpl.c
335
if (!BN_mod_mul(tmp_2, tmp_1, a, p, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
616
if (!BN_mod_mul(Z_3, Z_2, Z_1, &group->field, ctx))
crypto/libressl/crypto/ecdsa/ecs_ossl.c
349
if (!BN_mod_mul(bxr, b, priv_key, order, ctx)) { /* bx */
crypto/libressl/crypto/ecdsa/ecs_ossl.c
353
if (!BN_mod_mul(bxr, bxr, ret->r, order, ctx)) { /* bxr */
crypto/libressl/crypto/ecdsa/ecs_ossl.c
357
if (!BN_mod_mul(bm, b, m, order, ctx)) { /* bm */
crypto/libressl/crypto/ecdsa/ecs_ossl.c
365
if (!BN_mod_mul(s, s, ckinv, order, ctx)) { /* s = b(m + xr)k^-1 */
crypto/libressl/crypto/ecdsa/ecs_ossl.c
369
if (!BN_mod_mul(s, s, binv, order, ctx)) { /* s = (m + xr)k^-1 */
crypto/libressl/crypto/ecdsa/ecs_ossl.c
499
if (!BN_mod_mul(u1, m, u2, order, ctx)) { /* u1 = mw */
crypto/libressl/crypto/ecdsa/ecs_ossl.c
503
if (!BN_mod_mul(u2, sig->r, u2, order, ctx)) { /* u2 = rw */
crypto/libressl/crypto/gost/gostr341001.c
223
if (BN_mod_mul(tmp, priv_key, r, order, ctx) == 0)
crypto/libressl/crypto/gost/gostr341001.c
229
if (BN_mod_mul(tmp2, k, e, order, ctx) == 0)
crypto/libressl/crypto/gost/gostr341001.c
296
if (BN_mod_mul(z1, sig->s, v, order, ctx) == 0)
crypto/libressl/crypto/gost/gostr341001.c
300
if (BN_mod_mul(z2, tmp, v, order, ctx) == 0)
crypto/libressl/crypto/gost/gostr341001.c
354
if (BN_mod_mul(p, key, ukm, order, ctx) == 0)
crypto/libressl/crypto/rsa/rsa_chk.c
153
r = BN_mod_mul(i, key->d, key->e, k, ctx);
crypto/libressl/include/openssl/bn.h
406
int BN_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,