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

  /libcore/luni/src/main/java/java/math/
NativeBN.java 103 public static native void BN_mul(long r, long a, long b);
104 // int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
BigInt.java 275 NativeBN.BN_mul(r.bignum, a.bignum, b.bignum);
  /external/vboot_reference/host/lib/
util_misc.c 99 BN_mul(RRTemp, RR, R, bn_ctx);
  /external/vboot_reference/utility/
dumpRSAPublicKey.c 93 BN_mul(RRTemp, RR, R, bn_ctx);
  /external/boringssl/src/crypto/fipsmodule/bn/
exponentiation.c 175 if (!BN_mul(rr, rr, v, ctx)) {
323 if (!BN_mul(b, a, &(recp->Nr), ctx)) {
331 if (!BN_mul(b, &(recp->N), d, ctx)) {
380 if (!BN_mul(a, x, y, ctx)) {
    [all...]
montgomery.c 415 if (!BN_mul(tmp, a, b, ctx)) {
gcd.c 561 if (!BN_mul(tmp, D, X, ctx)) {
bn_test.cc 282 ASSERT_TRUE(BN_mul(ret.get(), a.get(), two.get(), ctx));
356 ASSERT_TRUE(BN_mul(ret.get(), a.get(), a.get(), ctx));
401 ASSERT_TRUE(BN_mul(ret.get(), a.get(), b.get(), ctx));
430 ASSERT_TRUE(BN_mul(ret.get(), quotient.get(), b.get(), ctx));
    [all...]
div.c 457 if (!BN_mul(t, a, b, ctx)) {
mul.c 564 int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) {
  /external/boringssl/src/crypto/fipsmodule/rsa/
rsa_impl.c 716 if (!BN_mul(r1, r0, rsa->iqmp, ctx)) {
735 if (!BN_mul(r1, r0, rsa->q, ctx)) {
986 !BN_mul(totient, pm1, qm1, ctx) ||
998 !BN_mul(rsa->n, rsa->p, rsa->q, ctx) ||
rsa.c 610 if (!BN_mul(&n, key->p, key->q, ctx) ||
614 !BN_mul(&lcm, &pm1, &qm1, ctx) ||
  /libcore/luni/src/main/native/
java_math_NativeBN.cpp 460 if (!BN_mul(toBigNum(r), toBigNum(a), toBigNum(b), ctx.get())) {
548 NATIVE_METHOD(NativeBN, BN_mul, "(JJJ)V"),
  /external/tpm2/
MathFunctions.c 246 if (BN_mul(bnP, bnA, bnB, context) != 1)
CpriRSA.c 187 if(BN_mul(bnN, bnP, bnQ, context) != 1)
    [all...]
RSAKeySieve.c 887 if( BN_mul(bnN, bnP, bnQ, context) != 1
CpriECC.c     [all...]
  /external/boringssl/src/include/openssl/
bn.h 393 /* BN_mul sets |r| = |a| * |b|, where |r| may be the same pointer as |a| or
395 OPENSSL_EXPORT int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
404 * BN_mul(r, a, a, ctx). */
    [all...]

Completed in 444 milliseconds