| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/ |
| bn_mp_mulmod.c | 21 int mp_mulmod (mp_int * a, mp_int * b, mp_int * c, mp_int * d) function
|
| bn_mp_exptmod_fast.c | 161 if ((err = mp_mulmod (G, &res, P, &M[1])) != MP_OKAY) {
|
| tommath.h | 369 int mp_mulmod(mp_int *a, mp_int *b, mp_int *c, mp_int *d);
|
| /src/external/bsd/wpa/dist/src/tls/ |
| bignum.c | 198 if (mp_mulmod((mp_int *) a, (mp_int *) b, (mp_int *) c, (mp_int *) d)
|
| libtommath.c | 532 static int mp_mulmod (mp_int * a, mp_int * b, mp_int * c, mp_int * d) function 3079 if ((err = mp_mulmod (G, &res, P, &M[1])) != MP_OKAY) {
|
| /src/external/bsd/wpa/dist/src/crypto/ |
| crypto_wolfssl.c | 1511 return mp_mulmod((mp_int *) a, (mp_int *) b, (mp_int *) m, 1969 if (mp_mulmod(pa->x, &mu, modulus, ta->x) != MP_OKAY || 1970 mp_mulmod(pa->y, &mu, modulus, ta->y) != MP_OKAY || 1971 mp_mulmod(pa->z, &mu, modulus, ta->z) != MP_OKAY || 1972 mp_mulmod(pb->x, &mu, modulus, tb->x) != MP_OKAY || 1973 mp_mulmod(pb->y, &mu, modulus, tb->y) != MP_OKAY || 1974 mp_mulmod(pb->z, &mu, modulus, tb->z) != MP_OKAY) { 2044 mp_mulmod((mp_int *) x, y2, &e->prime, y2) != 0 ||
|
| /src/crypto/external/bsd/netpgp/dist/src/libbn/ |
| bignum.c | 3560 mp_mulmod (mp_int *d, mp_int * a, mp_int * b, mp_int * c) function 4193 if ((err = mp_mulmod (&M[1], G, &res, P)) != MP_OKAY) { 5465 return mp_mulmod(ret, a, b, __UNCONST(m)) == MP_OKAY;
|