/dalvik/libcore/openssl/src/main/java/org/openssl/ |
NativeBN.java | 132 public static native boolean BN_gcd(int r, int a, int b, int ctx); 133 // int BN_gcd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
|
/external/openssl/crypto/bn/ |
expspeed.c | 292 if (!BN_gcd(r,a,b,ctx)) goto err; 293 if (!BN_gcd(r,b,c,ctx)) goto err; 294 if (!BN_gcd(r,c,a,ctx)) goto err;
|
bn_x931p.c | 168 if (!BN_gcd(t, pm1, e, ctx))
|
bn_gcd.c | 1 /* crypto/bn/bn_gcd.c */ 117 int BN_gcd(BIGNUM *r, const BIGNUM *in_a, const BIGNUM *in_b, BN_CTX *ctx)
|
bn.h | 507 int BN_gcd(BIGNUM *r,const BIGNUM *a,const BIGNUM *b,BN_CTX *ctx); [all...] |
/external/openssl/crypto/rsa/ |
rsa_gen.c | 125 if (!BN_gcd(r1,r2,rsa->e,ctx)) goto err; 150 if (!BN_gcd(r1,r2,rsa->e,ctx)) goto err;
|
rsa_chk.c | 117 r = BN_gcd(m, i, j, ctx);
|
rsa_x931g.c | 153 if (!BN_gcd(r3, r1, r2, ctx))
|
/dalvik/libcore/math/src/main/java/java/math/ |
BigInt.java | 308 Check(NativeBN.BN_gcd(r.bignum, a.bignum, b.bignum, getCtx(t)));
|
/dalvik/libcore/openssl/src/main/native/ |
BNInterface.c | 638 * public static native int BN_gcd(int, int, int, int) 642 return BN_gcd(r, a, b, ctx); 751 { "BN_gcd", "(IIII)Z", (void*)NativeBN_BN_gcd },
|
/external/openssl/include/openssl/ |
bn.h | 507 int BN_gcd(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 | 495 int BN_gcd(BIGNUM *r,const BIGNUM *a,const BIGNUM *b,BN_CTX *ctx);
|