| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/ |
| bn_mp_addmod.c | 35 res = mp_mod (&t, c, d);
|
| bn_mp_mulmod.c | 34 res = mp_mod (&t, c, d);
|
| bn_mp_sqrmod.c | 35 res = mp_mod (&t, b, c);
|
| bn_mp_submod.c | 36 res = mp_mod (&t, c, d);
|
| bn_mp_mod.c | 22 mp_mod (mp_int * a, mp_int * b, mp_int * c) function
|
| bn_mp_is_square.c | 79 if ((res = mp_mod(arg,&t,&t)) != MP_OKAY) { 85 * is already equal to MP_OKAY from the mp_mod call
|
| bn_mp_jacobi.c | 88 if ((res = mp_mod (p, &a1, &p1)) != MP_OKAY) {
|
| bn_fast_mp_invmod.c | 47 if ((res = mp_mod (a, b, &y)) != MP_OKAY) {
|
| bn_mp_invmod_slow.c | 38 if ((res = mp_mod(a, b, &x)) != MP_OKAY) {
|
| bn_s_mp_exptmod.c | 98 if ((err = mp_mod (G, P, &M[1])) != MP_OKAY) {
|
| bn_mp_exptmod_fast.c | 166 if ((err = mp_mod(G, P, &M[1])) != MP_OKAY) {
|
| tommath.h | 332 int mp_mod(mp_int *a, mp_int *b, mp_int *c);
|
| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| rsa-ltm.c | 80 mp_mod(b, n, b); 92 mp_mod(in, n, in); 101 mp_mod(out, n, out); 115 mp_mod(in, p, &u); 117 mp_mod(in, q, &u); 126 mp_mod(&u, p, &u); 582 mp_mod(&d, &t1, &dmp1); 584 mp_mod(&d, &t2, &dmq1);
|
| /src/crypto/external/bsd/netpgp/dist/src/librsa/ |
| rsa.c | 369 if ((err = mp_mod( key->d, tmp1, key->dP)) != CRYPT_OK) { 373 if ((err = mp_mod( key->d, tmp2, key->dQ)) != CRYPT_OK) {
|
| /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/ |
| rsa.c | 369 if ((err = mp_mod( key->d, tmp1, key->dP)) != CRYPT_OK) { 373 if ((err = mp_mod( key->d, tmp2, key->dQ)) != CRYPT_OK) {
|
| /src/external/bsd/wpa/dist/src/tls/ |
| libtommath.c | 165 static int mp_mod(mp_int * a, mp_int * b, mp_int * c); 545 res = mp_mod (&t, c, d); 552 static int mp_mod (mp_int * a, mp_int * b, mp_int * c) function 780 if ((res = mp_mod(a, b, &x)) != MP_OKAY) { 1948 if ((err = mp_mod (G, P, &M[1])) != MP_OKAY) { 3084 if ((err = mp_mod(G, P, &M[1])) != MP_OKAY) {
|
| /src/crypto/external/bsd/netpgp/dist/src/libbn/ |
| bignum.c | 1246 mp_mod (const mp_int * a, const mp_int * b, mp_int * c) function 1389 if ((res = mp_mod (a, b, &y)) != MP_OKAY) { 1508 if ((res = mp_mod(a, b, &x)) != MP_OKAY) { 3344 if ((err = mp_mod (G, P, &M[1])) != MP_OKAY) { 3573 res = mp_mod (&t, c, d); 4198 if ((err = mp_mod(G, P, &M[1])) != MP_OKAY) { 4818 res = mp_mod (&t, b, c); 5181 res = mp_mod (&t, c, d); 5585 return mp_mod(rnd, range, rnd) == MP_OKAY;
|
| /src/external/bsd/wpa/dist/src/crypto/ |
| crypto_wolfssl.c | 1415 mp_mod((mp_int *) r, (mp_int *) m, (mp_int *) r) != 0) 1436 return mp_mod((mp_int *) a, (mp_int *) m,
|