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

  /external/openssl/crypto/bn/
bn_mul.c 1 /* crypto/bn/bn_mul.c */
946 int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
960 fprintf(stderr,"BN_mul %d * %d\n",a->top,b->top);
  /libcore/luni/src/main/java/java/math/
NativeBN.java 128 public static native boolean BN_mul(int r, int a, int b);
129 // int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
BigInt.java 314 Check(NativeBN.BN_mul(r.bignum, a.bignum, b.bignum));

Completed in 1120 milliseconds