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

  /external/boringssl/src/crypto/fipsmodule/bn/
sqrt.c 208 if (!BN_mod_mul(t, t, y, p, ctx) ||
214 if (!BN_mod_mul(x, A, b, p, ctx) ||
215 !BN_mod_mul(x, x, t, p, ctx)) {
345 !BN_mod_mul(b, b, A, p, ctx)) {
350 if (!BN_mod_mul(x, x, A, p, ctx)) {
384 if (!BN_mod_mul(t, t, t, p, ctx)) {
399 if (!BN_mod_mul(y, t, t, p, ctx) ||
400 !BN_mod_mul(x, x, t, p, ctx) ||
401 !BN_mod_mul(b, b, y, p, ctx)) {
prime.c 625 if (!BN_copy(x, z) || !BN_mod_mul(z, x, x, w, ctx)) {
637 if (!BN_copy(x, z) || !BN_mod_mul(z, x, x, w, ctx)) {
    [all...]
bn_test.cc 473 ASSERT_TRUE(BN_mod_mul(ret.get(), a.get(), b.get(), m.get(), ctx));
508 ASSERT_TRUE(BN_mod_mul(ret.get(), a.get(), a.get(), m.get(), ctx));
513 ASSERT_TRUE(BN_mod_mul(ret.get(), a.get(), a_copy.get(), m.get(), ctx));
    [all...]
div.c 441 int BN_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m,
  /external/boringssl/src/crypto/fipsmodule/ecdsa/
ecdsa.c 173 if (!BN_mod_mul(u1, m, u2, order, ctx)) {
178 if (!BN_mod_mul(u2, sig->r, u2, order, ctx)) {
407 if (!BN_mod_mul(tmp, priv_key, ret->r, order, ctx)) {
415 if (!BN_mod_mul(s, s, ckinv, order, ctx)) {
  /external/boringssl/src/crypto/fipsmodule/ec/
oct.c 315 !BN_mod_mul(tmp1, tmp2, x, &group->field, ctx)) {
330 !BN_mod_mul(tmp2, tmp2, x, &group->field, ctx)) {
simple.c 1112 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 558 if (!BN_mod_mul(&xr, dsa->priv_key, r, dsa->q, ctx)) {
569 if (!BN_mod_mul(s, s, kinv, dsa->q, ctx)) {
677 if (!BN_mod_mul(&u1, &u1, &u2, dsa->q, ctx)) {
682 if (!BN_mod_mul(&u2, sig->r, &u2, dsa->q, ctx)) {
  /external/boringssl/src/crypto/fipsmodule/rsa/
rsa.c 623 !BN_mod_mul(&de, key->d, key->e, &lcm, ctx)) {
651 !BN_mod_mul(&iqmp_times_q, key->iqmp, key->q, key->p, ctx)) {
  /external/wpa_supplicant_8/src/crypto/
crypto_openssl.c 1285 res = BN_mod_mul((BIGNUM *) d, (const BIGNUM *) a, (const BIGNUM *) b,
    [all...]
  /external/boringssl/src/include/openssl/
bn.h 546 /* BN_mod_mul sets |r| = |a|*|b| mod |m|. It returns one on success and zero
548 OPENSSL_EXPORT int BN_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
    [all...]

Completed in 214 milliseconds