/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/boringssl/src/crypto/rsa/ |
rsa_impl.c | 711 if (!BN_mul(r1, r0, rsa->iqmp, ctx)) { 730 if (!BN_mul(r1, r0, rsa->q, ctx)) { 753 !BN_mul(m1, m1, ap->coeff, ctx) || 756 !BN_mul(m1, m1, ap->r, ctx) || 899 !BN_mul(rsa->n, rsa->p, rsa->q, ctx)) { 944 if (!BN_mul(r1, rsa->n, ap->prime, ctx)) { 967 } else if (!BN_mul(rsa->n, rsa->n, ap->prime, ctx)) { 989 if (!BN_mul(r0, r1, r2, ctx)) { 996 !BN_mul(r0, r0, r3, ctx)) {
|
rsa.c | 597 if (!BN_mul(&n, key->p, key->q, ctx) || 601 !BN_mul(&lcm, &pm1, &qm1, ctx) || 615 if (!BN_mul(&n, &n, ap->prime, ctx) || 617 !BN_mul(&lcm, &lcm, &pm1, ctx) || 729 if (!BN_mul(totient, rsa->e, rsa->d, ctx) || 785 !BN_mul(multiple, rsa->p, rsa->q, ctx)) {
|
rsa_asn1.c | 256 !BN_mul(product_of_primes_so_far, ret->p, ret->q, ctx)) { 272 !BN_mul(product_of_primes_so_far, product_of_primes_so_far,
|
/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/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)) {
|
bn_test.cc | 268 !BN_mul(ret.get(), a.get(), two.get(), ctx) || 346 !BN_mul(ret.get(), a.get(), a.get(), ctx) || 401 !BN_mul(ret.get(), a.get(), b.get(), ctx) || 429 !BN_mul(ret.get(), quotient.get(), b.get(), ctx) || [all...] |
gcd.c | 561 if (!BN_mul(tmp, D, X, ctx)) {
|
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) {
|
/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 | 409 /* BN_mul sets |r| = |a| * |b|, where |r| may be the same pointer as |a| or 411 OPENSSL_EXPORT int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, 420 * BN_mul(r, a, a, ctx). */ [all...] |