HomeSort by: relevance | last modified time | path
    Searched refs:BN_mod (Results 1 - 25 of 53) sorted by relevancy

1 2 3

  /src/crypto/external/apache2/openssl/dist/test/
exptest.c 197 if (!TEST_true(BN_mod(a, a, m, ctx))
198 || !TEST_true(BN_mod(b, b, m, ctx))
284 if (!TEST_true(BN_mod(a1, a1, m1, ctx))
285 || !TEST_true(BN_mod(b1, b1, m1, ctx))
286 || !TEST_true(BN_mod(a2, a2, m2, ctx))
287 || !TEST_true(BN_mod(b2, b2, m2, ctx))
  /src/crypto/external/bsd/openssl/dist/test/
exptest.c 197 if (!TEST_true(BN_mod(a, a, m, ctx))
198 || !TEST_true(BN_mod(b, b, m, ctx))
283 if (!TEST_true(BN_mod(a1, a1, m1, ctx))
284 || !TEST_true(BN_mod(b1, b1, m1, ctx))
285 || !TEST_true(BN_mod(a2, a2, m2, ctx))
286 || !TEST_true(BN_mod(b2, b2, m2, ctx))
  /src/crypto/external/apache2/openssl/dist/crypto/rsa/
rsa_chk.c 166 if (!BN_mod(j, key->d, i, ctx)) {
180 if (!BN_mod(j, key->d, i, ctx)) {
207 if (!BN_mod(j, key->d, i, ctx)) {
rsa_x931g.c 125 if (!BN_mod(rsa->dmp1, rsa->d, r1, ctx))
132 if (!BN_mod(rsa->dmq1, rsa->d, r2, ctx))
rsa_sp800_56b_gen.c 299 if (!BN_mod(rsa->dmp1, rsa->d, p1, ctx))
308 if (!BN_mod(rsa->dmq1, rsa->d, q1, ctx))
rsa_ossl.c 877 * below modulo operations on |I|. Unlike BN_mod it's constant time.
924 if (!BN_mod(r1, c, rsa->q, ctx)) {
949 if (!BN_mod(r1, c, rsa->p, ctx)) {
997 if (!BN_mod(r1, cc, pinfo->r, ctx)) {
1034 if (!BN_mod(r0, pr1, rsa->p, ctx)) {
1079 if (!BN_mod(r1, pr2, pinfo->r, ctx)) {
1127 if (!BN_mod(vrfy, vrfy, rsa->n, ctx))
  /src/crypto/external/bsd/openssl/dist/crypto/rsa/
rsa_chk.c 166 if (!BN_mod(j, key->d, i, ctx)) {
180 if (!BN_mod(j, key->d, i, ctx)) {
207 if (!BN_mod(j, key->d, i, ctx)) {
rsa_x931g.c 125 if (!BN_mod(rsa->dmp1, rsa->d, r1, ctx))
132 if (!BN_mod(rsa->dmq1, rsa->d, r2, ctx))
rsa_gen.c 365 if (!BN_mod(rsa->dmp1, d, r1, ctx)
366 || !BN_mod(rsa->dmq1, d, r2, ctx)) {
375 if (!BN_mod(pinfo->d, d, pinfo->d, ctx)) {
rsa_sp800_56b_gen.c 290 if (!BN_mod(rsa->dmp1, rsa->d, p1, ctx))
299 if (!BN_mod(rsa->dmq1, rsa->d, q1, ctx))
rsa_ossl.c 687 * below modulo operations on |I|. Unlike BN_mod it's constant time.
734 if (!BN_mod(r1, c, rsa->q, ctx)) {
759 if (!BN_mod(r1, c, rsa->p, ctx)) {
807 if (!BN_mod(r1, cc, pinfo->r, ctx)) {
844 if (!BN_mod(r0, pr1, rsa->p, ctx)) {
889 if (!BN_mod(r1, pr2, pinfo->r, ctx)) {
937 if (!BN_mod(vrfy, vrfy, rsa->n, ctx))
  /src/crypto/external/bsd/openssl.old/dist/crypto/rsa/
rsa_chk.c 160 if (!BN_mod(j, key->d, i, ctx)) {
174 if (!BN_mod(j, key->d, i, ctx)) {
201 if (!BN_mod(j, key->d, i, ctx)) {
rsa_gen.c 337 if (!BN_mod(rsa->dmp1, d, r1, ctx)
338 || !BN_mod(rsa->dmq1, d, r2, ctx)) {
347 if (!BN_mod(pinfo->d, d, pinfo->d, ctx)) {
rsa_x931g.c 119 if (!BN_mod(rsa->dmp1, rsa->d, r1, ctx))
126 if (!BN_mod(rsa->dmq1, rsa->d, r2, ctx))
rsa_ossl.c 674 * below modulo operations on |I|. Unlike BN_mod it's constant time.
716 if (!BN_mod(r1, c, rsa->q, ctx)) {
741 if (!BN_mod(r1, c, rsa->p, ctx)) {
798 if (!BN_mod(r1, cc, pinfo->r, ctx)) {
834 if (!BN_mod(r0, pr1, rsa->p, ctx)) {
878 if (!BN_mod(r1, pr2, pinfo->r, ctx)) {
925 if (!BN_mod(vrfy, vrfy, rsa->n, ctx))
  /src/crypto/external/apache2/openssl/dist/crypto/bn/
bn_exp2.c 71 if (!BN_mod(val1[0], a1, m, ctx))
99 if (!BN_mod(val2[0], a2, m, ctx))
bn_mod.c 17 * like BN_mod, but returns non-negative remainder (i.e., 0 <= r < |d|
26 if (!(BN_mod(r, m, d, ctx)))
240 return BN_mod(r, r, m, ctx);
  /src/crypto/external/bsd/openssl/dist/crypto/bn/
bn_exp2.c 72 if (!BN_mod(val1[0], a1, m, ctx))
101 if (!BN_mod(val2[0], a2, m, ctx))
bn_mod.c 16 * like BN_mod, but returns non-negative remainder (i.e., 0 <= r < |d|
25 if (!(BN_mod(r, m, d, ctx)))
241 return BN_mod(r, r, m, ctx);
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/
bn_exp2.c 72 if (!BN_mod(val1[0], a1, m, ctx))
101 if (!BN_mod(val2[0], a2, m, ctx))
bn_mod.c 16 * like BN_mod, but returns non-negative remainder (i.e., 0 <= r < |d|
20 if (!(BN_mod(r, m, d, ctx)))
227 return BN_mod(r, r, m, ctx);
  /src/crypto/external/bsd/openssl.old/dist/test/
exptest.c 188 if (!TEST_true(BN_mod(a, a, m, ctx))
189 || !TEST_true(BN_mod(b, b, m, ctx))
  /src/external/bsd/ntp/dist/util/
ntp-keygen.c 1198 BN_mod(b, b, q, ctx);
1222 BN_mod(r, r, q, ctx);
1230 BN_mod(k, k, q, ctx);
1233 BN_mod(v, v, q, ctx); /* y = k + b r mod q */
1380 BN_mod(b, b, n, ctx);
1387 BN_mod(u, u, n, ctx);
1422 BN_mod(r, r, n, ctx);
1430 BN_mod(k, k, n, ctx);
1669 BN_mod(g, g, p, ctx);
1695 BN_mod(x[j], x[j], q, ctx)
    [all...]
  /src/crypto/external/cpl/trousers/dist/src/tspi/daa/big_integer/
bi_openssl.c 91 BN_mod( result, result, bi_m, context);
  /src/crypto/external/cpl/trousers/dist/src/include/daa/
bi_openssl.h 308 BN_mod( result, n, mod, context);
315 BN_mod( result, n, m, context);

Completed in 44 milliseconds

1 2 3