/external/openssl/crypto/bn/ |
bn_sqrt.c | 148 if (!BN_mod_exp(ret, A, q, p, ctx)) goto end; 187 if (!BN_mod_exp(b, t, q, p, ctx)) goto end; 258 if (!BN_mod_exp(y, y, q, p, ctx)) goto end; 302 if (!BN_mod_exp(x, A, t, p, ctx)) goto end;
|
bn_blind.c | 132 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, member in struct:bn_blinding_st 299 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, 328 if (bn_mod_exp != NULL) 329 ret->bn_mod_exp = bn_mod_exp; 356 if (ret->bn_mod_exp != NULL && ret->m_ctx != NULL) 358 if (!ret->bn_mod_exp(ret->A, ret->A, ret->e, ret->mod, ctx, ret->m_ctx)) 363 if (!BN_mod_exp(ret->A, ret->A, ret->e, ret->mod, ctx))
|
expspeed.c | 275 if (!BN_mod_exp(r,a,b,c,ctx)) goto err;
|
bn_exp.c | 164 int BN_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m,
|
bn.h | 498 int BN_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, 595 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, [all...] |
bntest.c | 246 message(out,"BN_mod_exp"); 930 if (!BN_mod_exp(d,a,b,c,ctx)) [all...] |
/external/openssl/crypto/dsa/ |
dsa_key.c | 115 if (!BN_mod_exp(pub_key,dsa->g,prk,dsa->p,ctx)) goto err;
|
dsa_ameth.c | 277 if (!BN_mod_exp(dsa->pub_key, dsa->g, dsa->priv_key, dsa->p, ctx))
|
/external/openssl/crypto/jpake/ |
jpake.c | 199 BN_mod_exp(p->zkpx.gr, zkpg, r, ctx->p.p, ctx->ctx); 226 BN_mod_exp(t1, zkpg, p->zkpx.b, ctx->p.p, ctx->ctx); 228 BN_mod_exp(t2, p->gx, h, ctx->p.p, ctx->ctx); 250 BN_mod_exp(p->gx, g, x, ctx->p.p, ctx->ctx); 295 BN_mod_exp(t, gx, ctx->p.q, ctx->p.p, ctx->ctx); 354 BN_mod_exp(t1, ctx->p.g, ctx->xa, ctx->p.p, ctx->ctx); 396 BN_mod_exp(t1, ctx->p.gxd, ctx->xb, ctx->p.p, ctx->ctx); 400 BN_mod_exp(t3, t1, t2, ctx->p.p, ctx->ctx); 404 BN_mod_exp(ctx->key, t1, ctx->xb, ctx->p.p, ctx->ctx); 426 BN_mod_exp(t2, ctx->p.g, t1, ctx->p.p, ctx->ctx) [all...] |
/libcore/luni/src/main/java/java/math/ |
NativeBN.java | 144 public static native boolean BN_mod_exp(int r, int a, int p, int m); 145 // int BN_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx);
|
BigInt.java | 366 Check(NativeBN.BN_mod_exp(r.bignum, a.bignum, p.bignum, m.bignum));
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
crypto_openssl.c | 234 if (BN_mod_exp(bn_result, bn_base, bn_exp, bn_modulus, ctx) != 1)
|
/libcore/luni/src/main/native/ |
java_math_NativeBN.cpp | 493 return BN_mod_exp(r, a, p, m, ctx.get()); 533 NATIVE_METHOD(NativeBN, BN_mod_exp, "(IIII)Z"),
|
/external/wpa_supplicant_8/src/crypto/ |
crypto_openssl.c | 284 if (BN_mod_exp(bn_result, bn_base, bn_exp, bn_modulus, ctx) != 1)
|
/external/openssl/crypto/pem/ |
pvkfmt.c | 346 if (!BN_mod_exp(dsa->pub_key, dsa->g,
|
/external/openssl/include/openssl/ |
bn.h | 498 int BN_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, 595 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, [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 | 460 int BN_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, 553 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
|
/external/openssl/crypto/engine/ |
eng_cryptodev.c | 1004 ret = BN_mod_exp(r, a, p, m, ctx); 1023 ret = meth->bn_mod_exp(r, a, p, m, ctx, in_mont); 1028 ret = meth->bn_mod_exp(r, a, p, m, ctx, in_mont); 1129 if (!dsa->meth->bn_mod_exp(dsa,t1,dsa->g,u1,dsa->p,ctx,mont)) 1133 if (!dsa->meth->bn_mod_exp(dsa,&t2,dsa->pub_key,u2,dsa->p,ctx,mont)) 1369 cryptodev_rsa.bn_mod_exp = rsa_meth->bn_mod_exp; [all...] |