HomeSort by relevance Sort by last modified time
    Searched refs:BN_mul (Results 1 - 15 of 15) 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 279 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/bn/
bn_test.cc 240 message(bc_file.get(), "BN_mul");
474 if (!BN_mul(e.get(), d.get(), b.get(), ctx) ||
649 if (!BN_mul(d.get(), a.get(), c.get(), ctx) ||
692 if (!BN_mul(c.get(), a.get(), b.get(), ctx.get())) {
713 // Test that BN_mul never gives negative zero.
719 if (!BN_mul(c.get(), a.get(), b.get(), ctx.get())) {
781 if (!BN_mul(d.get(), a.get(), a.get(), ctx)) {
786 "Square test failed: BN_sqr and BN_mul produce "
807 if (!BN_mul(d.get(), a.get(), a.get(), ctx)) {
812 "Square test failed: BN_sqr and BN_mul produce
    [all...]
gcd.c 484 if (!BN_mul(tmp, D, X, ctx)) {
645 if (!BN_mul(tmp, D, X, ctx)) {
exponentiation.c 170 if (!BN_mul(rr, rr, v, ctx)) {
317 if (!BN_mul(b, a, &(recp->Nr), ctx)) {
325 if (!BN_mul(b, &(recp->N), d, ctx)) {
374 if (!BN_mul(a, x, y, ctx)) {
    [all...]
div.c 451 if (!BN_mul(t, a, b, ctx)) {
montgomery.c 550 if (!BN_mul(tmp, a, b, ctx)) {
mul.c 582 int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) {
  /external/boringssl/src/crypto/rsa/
rsa.c 544 !BN_mul(&n, key->p, key->q, ctx) ||
548 !BN_mul(&lcm, &pm1, &qm1, ctx) ||
649 if (!BN_mul(totient, rsa->e, rsa->d, ctx) ||
705 !BN_mul(multiple, rsa->p, rsa->q, ctx)) {
rsa_impl.c 697 if (!BN_mul(r1, r0, rsa->iqmp, ctx)) {
720 if (!BN_mul(r1, r0, rsa->q, ctx)) {
873 if (!BN_mul(rsa->n, rsa->p, rsa->q, ctx)) {
884 if (!BN_mul(r0, r1, r2, ctx)) {
blinding.c 389 if (!BN_mul(r0, r1, r2, ctx)) {
  /external/boringssl/src/include/openssl/
bn.h 380 /* BN_mul sets |r| = |a| * |b|, where |r| may be the same pointer as |a| or
382 OPENSSL_EXPORT int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
391 * BN_mul(r, a, a, ctx). */
    [all...]
  /libcore/luni/src/main/native/
java_math_NativeBN.cpp 523 BN_mul(toBigNum(r), toBigNum(a), toBigNum(b), ctx.get());
597 NATIVE_METHOD(NativeBN, BN_mul, "(JJJ)V"),

Completed in 1875 milliseconds