Symbol: BN_mul
crypto/libressl/crypto/bn/bn_bpsw.c
77
if (!BN_mul(tmp, D, tmp, ctx))
crypto/libressl/crypto/bn/bn_bpsw.c
94
if (!BN_mul(tmp, D, U, ctx))
crypto/libressl/crypto/bn/bn_exp.c
161
if (!BN_mul(rr, rr, v, ctx))
crypto/libressl/crypto/bn/bn_gcd.c
492
if (!BN_mul(tmp, D,X, ctx))
crypto/libressl/crypto/bn/bn_gcd.c
684
if (!BN_mul(tmp, D, X, ctx))
crypto/libressl/crypto/bn/bn_gcd.c
851
if (!BN_mul(tmp, D, X, ctx))
crypto/libressl/crypto/bn/bn_mod.c
196
if (!BN_mul(t, a,b, ctx))
crypto/libressl/crypto/bn/bn_mont.c
160
if (!BN_mul(tmp, a,b, ctx))
crypto/libressl/crypto/bn/bn_mont.c
305
if (!BN_mul(t2, t1, &mont->Ni, ctx))
crypto/libressl/crypto/bn/bn_mont.c
309
if (!BN_mul(t1, t2, &mont->N, ctx))
crypto/libressl/crypto/bn/bn_recp.c
126
if (!BN_mul(a, x, y, ctx))
crypto/libressl/crypto/bn/bn_recp.c
199
if (!BN_mul(b, a,&(recp->Nr), ctx))
crypto/libressl/crypto/bn/bn_recp.c
205
if (!BN_mul(b, &(recp->N), d, ctx))
crypto/libressl/crypto/dsa/dsa_ameth.c
535
if (BN_mul(newp1, dsa->q, j, ctx) == 0)
crypto/libressl/crypto/ec/ecp_nist.c
182
if (!BN_mul(r, a, b, ctx))
crypto/libressl/crypto/ec/ecp_smpl.c
1548
if (!BN_mul(cardinality, &group->order, &group->cofactor, ctx))
crypto/libressl/crypto/rsa/rsa_chk.c
112
r = BN_mul(i, key->p, key->q, ctx);
crypto/libressl/crypto/rsa/rsa_chk.c
137
r = BN_mul(l, i, j, ctx);
crypto/libressl/crypto/rsa/rsa_crpt.c
169
if (!BN_mul(r0, r1, r2, ctx))
crypto/libressl/crypto/rsa/rsa_eay.c
783
if (!BN_mul(r1, r0, rsa->iqmp, ctx))
crypto/libressl/crypto/rsa/rsa_eay.c
804
if (!BN_mul(r1, r0, rsa->q, ctx))
crypto/libressl/crypto/rsa/rsa_gen.c
187
if (!BN_mul(rsa->n, rsa->p, rsa->q, ctx))
crypto/libressl/crypto/rsa/rsa_gen.c
195
if (!BN_mul(r0, r1, r2, ctx)) /* (p-1)(q-1) */
crypto/libressl/include/openssl/bn.h
386
int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
lib/libtelnet/pk.c
222
BN_mul(sk, base, sk, ctx);
usr.bin/dc/bcode.c
1013
bn_check(BN_mul(r->number, a->number, b->number, ctx));
usr.bin/dc/bcode.c
374
bn_check(BN_mul(n, n, a, ctx));
usr.bin/newkey/generic.c
121
BN_mul(sk, base, sk, ctx);