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

1 2

  /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 277 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/rsa/
rsa_impl.c 744 // Montgomery form. The |BN_mul| and |BN_mod| pair can then be replaced
758 if (!BN_mul(r1, r0, rsa->iqmp, ctx)) {
777 if (!BN_mul(r1, r0, rsa->q, ctx)) {
1027 !BN_mul(totient, pm1, qm1, ctx) ||
1039 !BN_mul(rsa->n, rsa->p, rsa->q, ctx) ||
    [all...]
rsa.c 675 if (!BN_mul(&n, key->p, key->q, ctx) ||
679 !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/boringssl/src/crypto/fipsmodule/bn/
exponentiation.c 175 if (!BN_mul(rr, rr, v, ctx)) {
320 if (!BN_mul(b, a, &(recp->Nr), ctx)) {
328 if (!BN_mul(b, &(recp->N), d, ctx)) {
377 if (!BN_mul(a, x, y, ctx)) {
    [all...]
gcd.c 555 if (!BN_mul(tmp, D, X, ctx)) {
montgomery.c 392 if (!BN_mul(tmp, a, b, ctx)) {
bn_test.cc 284 ASSERT_TRUE(BN_mul(ret.get(), a.get(), two.get(), ctx));
358 ASSERT_TRUE(BN_mul(ret.get(), a.get(), a.get(), ctx));
430 ASSERT_TRUE(BN_mul(ret.get(), a.get(), b.get(), ctx));
495 ASSERT_TRUE(BN_mul(ret.get(), quotient.get(), b.get(), ctx));
    [all...]
div.c 465 if (!BN_mul(t, a, b, ctx)) {
mul.c 562 int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) {
666 // TODO(davidben): Should this call |bn_mul_comba4| too? |BN_mul| does not
  /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 389 // BN_mul sets |r| = |a| * |b|, where |r| may be the same pointer as |a| or
391 OPENSSL_EXPORT int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
400 // BN_mul(r, a, a, ctx).
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-7.0.0_r1-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 

Completed in 877 milliseconds

1 2