HomeSort by relevance Sort by last modified time
    Searched refs:BN_mod_mul (Results 1 - 12 of 12) sorted by null

  /external/boringssl/src/crypto/fipsmodule/bn/
sqrt.c 206 if (!BN_mod_mul(t, t, y, p, ctx) ||
212 if (!BN_mod_mul(x, A, b, p, ctx) ||
213 !BN_mod_mul(x, x, t, p, ctx)) {
340 !BN_mod_mul(b, b, A, p, ctx)) {
345 if (!BN_mod_mul(x, x, A, p, ctx)) {
378 if (!BN_mod_mul(t, t, t, p, ctx)) {
393 if (!BN_mod_mul(y, t, t, p, ctx) ||
394 !BN_mod_mul(x, x, t, p, ctx) ||
395 !BN_mod_mul(b, b, y, p, ctx)) {
prime.c 624 if (!BN_copy(x, z) || !BN_mod_mul(z, x, x, w, ctx)) {
636 if (!BN_copy(x, z) || !BN_mod_mul(z, x, x, w, ctx)) {
    [all...]
bn_test.cc 538 ASSERT_TRUE(BN_mod_mul(ret.get(), a.get(), b.get(), m.get(), ctx));
596 ASSERT_TRUE(BN_mod_mul(ret.get(), a.get(), a.get(), m.get(), ctx));
601 ASSERT_TRUE(BN_mod_mul(ret.get(), a.get(), a_copy.get(), m.get(), ctx));
    [all...]
div.c 449 int BN_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m,
  /external/boringssl/src/crypto/fipsmodule/ec/
oct.c 313 !BN_mod_mul(tmp1, tmp2, x, &group->field, ctx)) {
325 if (!BN_mod_mul(tmp2, a, x, &group->field, ctx) ||
simple.c 1038 return BN_mod_mul(r, a, b, &group->field, ctx);
  /external/tpm2/
CpriECC.c 628 if( !BN_mod_mul(bnA, bnA, bnX, bnP, context)
637 || !BN_mod_mul(bnY, bnY, bnY, bnP, context)
    [all...]
RSAKeySieve.c 297 if(BN_mod_mul(bnZ, bnZ, bnZ, bnW, context) != 1)
  /external/boringssl/src/crypto/dsa/
dsa.c 586 if (!BN_mod_mul(&xr, dsa->priv_key, r, dsa->q, ctx)) {
597 if (!BN_mod_mul(s, s, kinv, dsa->q, ctx)) {
701 if (!BN_mod_mul(&u1, &u1, &u2, dsa->q, ctx)) {
706 if (!BN_mod_mul(&u2, sig->r, &u2, dsa->q, ctx)) {
  /external/boringssl/src/crypto/fipsmodule/rsa/
rsa.c 688 !BN_mod_mul(&de, key->d, key->e, &lcm, ctx)) {
716 !BN_mod_mul(&iqmp_times_q, key->iqmp, key->q, key->p, ctx)) {
  /external/wpa_supplicant_8/src/crypto/
crypto_openssl.c 1319 res = BN_mod_mul((BIGNUM *) d, (const BIGNUM *) a, (const BIGNUM *) b,
    [all...]
  /external/boringssl/src/include/openssl/
bn.h 547 // BN_mod_mul sets |r| = |a|*|b| mod |m|. It returns one on success and zero
549 OPENSSL_EXPORT int BN_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
    [all...]

Completed in 224 milliseconds