/libcore/luni/src/main/java/java/math/ |
NativeBN.java | 152 public static native boolean BN_mod_inverse(int ret, int a, int n); 154 // BIGNUM * BN_mod_inverse(BIGNUM *ret, const BIGNUM *a, const BIGNUM *n, BN_CTX *ctx);
|
BigInt.java | 376 Check(NativeBN.BN_mod_inverse(r.bignum, a.bignum, m.bignum));
|
/external/openssl/crypto/bn/ |
expspeed.c | 300 if (!BN_mod_inverse(r,a,c,ctx)) goto err; 301 if (!BN_mod_inverse(r,b,c,ctx)) goto err;
|
bn_mont.c | 391 if ((BN_mod_inverse(Ri,R,&tmod,ctx)) == NULL) 421 if ((BN_mod_inverse(Ri,R,&tmod,ctx)) == NULL) 445 if ((BN_mod_inverse(Ri,R,&mont->N,ctx)) == NULL)
|
bn_blind.c | 344 if (BN_mod_inverse(ret->Ai, ret->A, ret->mod, ctx) == NULL)
|
bn_gcd.c | 208 BIGNUM *BN_mod_inverse(BIGNUM *in, 503 /* BN_mod_inverse_no_branch is a special version of BN_mod_inverse.
|
bn.h | 281 * BN_mod_inverse() will call BN_mod_inverse_no_branch. 536 BIGNUM *BN_mod_inverse(BIGNUM *ret, [all...] |
/external/openssl/crypto/rsa/ |
rsa_gen.c | 192 if (!BN_mod_inverse(rsa->d,rsa->e,pr0,ctx)) goto err; /* d */ 217 if (!BN_mod_inverse(rsa->iqmp,rsa->q,p,ctx)) goto err;
|
rsa_chk.c | 162 if(!BN_mod_inverse(i, key->q, key->p, ctx))
|
rsa_crpt.c | 184 ret = BN_mod_inverse(NULL, d, r0, ctx);
|
/external/openssl/crypto/dsa/ |
dsa_ossl.c | 286 if ((kinv=BN_mod_inverse(NULL,&k,dsa->q,ctx)) == NULL) goto err; 354 if ((BN_mod_inverse(&u2,sig->s,dsa->q,ctx)) == NULL) goto err;
|
/external/openssl/crypto/ecdsa/ |
ecs_ossl.c | 190 if (!BN_mod_inverse(k, k, order, ctx)) 404 if (!BN_mod_inverse(u2, sig->s, order, ctx))
|
/libcore/luni/src/main/native/ |
java_math_NativeBN.cpp | 499 return (BN_mod_inverse(ret, a, n, ctx.get()) != NULL); 534 NATIVE_METHOD(NativeBN, BN_mod_inverse, "(III)Z"),
|
/external/openssl/crypto/ec/ |
ecp_smpl.c | 595 if (!BN_mod_inverse(Z_1, Z_, &group->field, ctx)) 1272 if (!BN_mod_inverse(heap[1], heap[1], &group->field, ctx)) [all...] |
/external/openssl/include/openssl/ |
bn.h | 281 * BN_mod_inverse() will call BN_mod_inverse_no_branch. 536 BIGNUM *BN_mod_inverse(BIGNUM *ret, [all...] |