/external/openssl/crypto/bn/ |
bn_recp.c | 117 { if (!BN_mul(a,x,y,ctx)) goto err; } 180 if (!BN_mul(b,a,&(recp->Nr),ctx)) goto err; 184 if (!BN_mul(b,&(recp->N),d,ctx)) goto err;
|
bn_mod.c | 193 { if (!BN_mul(t,a,b,ctx)) goto err; }
|
bnspeed.c | 199 BN_mul(r,b,a,ctx);
|
bn_mont.c | 161 if (!BN_mul(tmp,a,b,ctx)) goto err; 360 if (!BN_mul(t2,t1,&mont->Ni,ctx)) goto err; 363 if (!BN_mul(t1,t2,&mont->N,ctx)) goto err;
|
bn_gcd.c | 450 if (!BN_mul(tmp,D,X,ctx)) goto err; 608 if (!BN_mul(tmp,D,X,ctx)) goto err;
|
bntest.c | 218 message(out,"BN_mul"); 459 BN_mul(&e,&d,&b,ctx); 598 BN_mul(&e,&d,&b,ctx); 647 BN_mul(&c,&a,&b,ctx); 894 BN_mul(d,a,b,ctx); 1049 BN_mul(e,e,a,ctx); [all...] |
bn_exp.c | 152 if (!BN_mul(rr,rr,v,ctx)) goto err;
|
bn.h | 454 int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); [all...] |
bn_mul.c | 1 /* crypto/bn/bn_mul.c */ 943 int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) 957 fprintf(stderr,"BN_mul %d * %d\n",a->top,b->top);
|
/external/openssl/crypto/rsa/ |
rsa_chk.c | 98 r = BN_mul(i, key->p, key->q, ctx); 115 r = BN_mul(l, i, j, ctx);
|
rsa_gen.c | 164 if (!BN_mul(rsa->n,rsa->p,rsa->q,ctx)) goto err; 169 if (!BN_mul(r0,r1,r2,ctx)) goto err; /* (p-1)(q-1) */
|
rsa_lib.c | 363 if (!BN_mul(r0, r1, r2, ctx)) goto err;
|
rsa_eay.c | 815 if (!BN_mul(r1,r0,rsa->iqmp,ctx)) goto err; 836 if (!BN_mul(r1,r0,rsa->q,ctx)) goto err;
|
/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 | 317 Check(NativeBN.BN_mul(r.bignum, a.bignum, b.bignum));
|
/external/openssl/crypto/ec/ |
ecp_nist.c | 175 if (!BN_mul(r, a, b, ctx)) goto err;
|
/libcore/luni/src/main/native/ |
java_math_NativeBN.cpp | 469 return BN_mul(r, a, b, ctx.get()); 536 NATIVE_METHOD(NativeBN, BN_mul, "(III)Z"),
|
/external/openssl/include/openssl/ |
bn.h | 454 int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); [all...] |
/prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/openssl/ |
bn.h | 422 int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
|