HomeSort by relevance Sort by last modified time
    Searched full:bn_mod_exp (Results 1 - 25 of 28) sorted by null

1 2

  /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...]
  /external/openssl/crypto/bn/
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))
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;
expspeed.c 275 if (!BN_mod_exp(r,a,b,c,ctx)) goto err;
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...]
  /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...]
  /external/openssl/crypto/rsa/
rsa_eay.c 230 if (!rsa->meth->bn_mod_exp(ret,f,rsa->e,rsa->n,ctx,
439 if (!rsa->meth->bn_mod_exp(ret,f,d,rsa->n,ctx,
561 if (!rsa->meth->bn_mod_exp(ret,f,d,rsa->n,ctx,
674 if (!rsa->meth->bn_mod_exp(ret,f,rsa->e,rsa->n,ctx,
783 if (!rsa->meth->bn_mod_exp(m1,r1,dmq1,rsa->q,ctx,
806 if (!rsa->meth->bn_mod_exp(r0,r1,dmp1,rsa->p,ctx,
841 if (!rsa->meth->bn_mod_exp(vrfy,r0,rsa->e,rsa->n,ctx,rsa->_method_mod_n)) goto err;
866 if (!rsa->meth->bn_mod_exp(r0,I,d,rsa->n,ctx,
rsa.h 101 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, member in struct:rsa_meth_st
185 * for example a key stored in external hardware. Without this flag bn_mod_exp
rsa_lib.c 423 rsa->meth->bn_mod_exp, rsa->_method_mod_n);
  /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/openssl/crypto/dsa/
dsa_ossl.c 92 * bn_mod_exp() handlers in the DSA_METHOD structure. We avoid the problem of
95 * if (!dsa->meth->bn_mod_exp(dsa, r,dsa->g,&k,dsa->p,ctx,
118 if((dsa)->meth->bn_mod_exp) \
119 _tmp_res53 = (dsa)->meth->bn_mod_exp((dsa), (r), (a), (p), \
dsa_key.c 115 if (!BN_mod_exp(pub_key,dsa->g,prk,dsa->p,ctx)) goto err;
dsa.h 125 int (*bn_mod_exp)(DSA *dsa, BIGNUM *r, BIGNUM *a, const BIGNUM *p, member in struct:dsa_method
dsa_ameth.c 277 if (!BN_mod_exp(dsa->pub_key, dsa->g, dsa->priv_key, dsa->p, ctx))
  /external/openssl/crypto/dh/
dh_key.c 158 if (!dh->meth->bn_mod_exp(dh, pub_key, dh->g, prk, dh->p, ctx, mont)) goto err;
218 if (!dh->meth->bn_mod_exp(dh, tmp, pub_key, dh->priv_key,dh->p,ctx,mont))
dh.h 103 int (*bn_mod_exp)(const DH *dh, BIGNUM *r, const BIGNUM *a, member in struct:dh_method
  /external/openssl/include/openssl/
rsa.h 101 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, member in struct:rsa_meth_st
185 * for example a key stored in external hardware. Without this flag bn_mod_exp
dh.h 103 int (*bn_mod_exp)(const DH *dh, BIGNUM *r, const BIGNUM *a, member in struct:dh_method
dsa.h 125 int (*bn_mod_exp)(DSA *dsa, BIGNUM *r, BIGNUM *a, const BIGNUM *p, member in struct:dsa_method
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...]
  /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_6/wpa_supplicant/src/crypto/
crypto_openssl.c 234 if (BN_mod_exp(bn_result, bn_base, bn_exp, bn_modulus, ctx) != 1)
  /external/wpa_supplicant_8/src/crypto/
crypto_openssl.c 284 if (BN_mod_exp(bn_result, bn_base, bn_exp, bn_modulus, ctx) != 1)
  /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,

Completed in 658 milliseconds

1 2