Symbol: BN_div
crypto/krb5/src/plugins/preauth/spake/openssl.c
156
BN_div(NULL, w, w, gdata->order, gdata->ctx))
crypto/openssl/crypto/bn/bn_gcd.c
101
if (!BN_div(D, M, &local_A, B, ctx))
crypto/openssl/crypto/bn/bn_gcd.c
407
if (!BN_div(D, M, A, B, ctx))
crypto/openssl/crypto/bn/bn_mont.c
330
if (!BN_div(Ri, NULL, Ri, &tmod, ctx))
crypto/openssl/crypto/bn/bn_mont.c
360
if (!BN_div(Ri, NULL, Ri, &tmod, ctx))
crypto/openssl/crypto/bn/bn_mont.c
385
if (!BN_div(&(mont->Ni), NULL, Ri, &mont->N, ctx))
crypto/openssl/crypto/bn/bn_recp.c
184
if (!BN_div(r, NULL, t, m, ctx))
crypto/openssl/crypto/dh/dh_check.c
200
if (!BN_div(t1, t2, dh->params.p, dh->params.q, ctx))
crypto/openssl/crypto/ec/ec_lib.c
361
|| !BN_div(group->cofactor, NULL, group->cofactor, group->order, ctx))
crypto/openssl/crypto/ffc/ffc_params_generate.c
745
if (!(BN_sub(pm1, p, BN_value_one()) && BN_div(e, NULL, pm1, q, ctx)))
crypto/openssl/crypto/ffc/ffc_params_generate.c
996
if (!BN_div(r0, NULL, test, q, ctx))
crypto/openssl/crypto/rsa/rsa_chk.c
127
if (!BN_div(m, NULL, l, m, ctx)) { /* remainder is 0 */
crypto/openssl/crypto/rsa/rsa_chk.c
145
if (!BN_div(m, NULL, l, m, ctx)) { /* remainder is 0 */
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
274
&& BN_div(lcm, NULL, p1q1, gcd, ctx); /* LCM((p-1, q-1)) */
crypto/openssl/crypto/rsa/rsa_x931g.c
110
if (!BN_div(r0, NULL, r0, r3, ctx))
crypto/openssl/fuzz/bndiv.c
83
OPENSSL_assert(BN_div(b3, b4, b1, b2, ctx));
crypto/openssl/include/openssl/bn.h
274
int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d,
crypto/openssl/include/openssl/bn.h
276
#define BN_mod(rem, a, m, ctx) BN_div(NULL, (rem), (a), (m), (ctx))
crypto/openssl/test/bntest.c
1348
|| !TEST_true(BN_div(ret, remainder, lshift1, two, ctx))
crypto/openssl/test/bntest.c
1361
|| !TEST_true(BN_div(ret, NULL /* rem */, lshift1, two, ctx))
crypto/openssl/test/bntest.c
1452
|| !TEST_true(BN_div(ret, remainder, square, a, ctx))
crypto/openssl/test/bntest.c
1512
|| !TEST_true(BN_div(ret, remainder, product, a, ctx))
crypto/openssl/test/bntest.c
1515
|| !TEST_true(BN_div(ret, remainder, product, b, ctx))
crypto/openssl/test/bntest.c
1547
if (!TEST_true(BN_div(ret, ret2, a, b, ctx))
crypto/openssl/test/bntest.c
2489
if (!TEST_true(BN_div(a, b, numerator, denominator, ctx))
crypto/openssl/test/bntest.c
2496
|| !TEST_true(BN_div(a, b, numerator, denominator, ctx))
crypto/openssl/test/bntest.c
2535
if (!TEST_false(BN_div(a, b, BN_value_one(), zero, ctx)))
crypto/openssl/test/bntest.c
356
if (TEST_true(BN_div(a, b, a, b, ctx))
crypto/openssl/test/bntest.c
379
if (TEST_true(BN_div(b, a, a, b, ctx))
crypto/openssl/test/bntest.c
411
&& TEST_true(BN_div(d, e, a, b, ctx))
lib/libmp/mpasbn.c
242
BN_ERRCHECK(msg, BN_div(q, r, nmp->bn, dmp->bn, c));
lib/libmp/mpasbn.c
579
BN_ERRCHECK(msg, BN_div(q, r, nmp->bn, dmp->bn, c));
usr.bin/factor/factor.c
282
BN_div(num, NULL, val, x, ctx);