HomeSort by relevance Sort by last modified time
    Searched refs:bn_mod_exp (Results 1 - 18 of 18) sorted by null

  /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
308 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
337 if (bn_mod_exp != NULL)
338 ret->bn_mod_exp = bn_mod_exp;
365 if (ret->bn_mod_exp != NULL && ret->m_ctx != NULL)
367 if (!ret->bn_mod_exp(ret->A, ret->A, ret->e, ret->mod, ctx, ret->m_ctx))
372 if (!BN_mod_exp(ret->A, ret->A, ret->e, ret->mod, ctx))
bn.h 498 int BN_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
608 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/rsa/
blinding.c 128 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, member in struct:bn_blinding_st
292 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
325 if (bn_mod_exp != NULL) {
326 ret->bn_mod_exp = bn_mod_exp;
354 if (ret->bn_mod_exp != NULL && ret->m_ctx != NULL) {
355 if (!ret->bn_mod_exp(ret->A, ret->A, ret->e, ret->mod, ctx, ret->m_ctx)) {
359 if (!BN_mod_exp(ret->A, ret->A, ret->e, ret->mod, ctx)) {
450 ret = BN_BLINDING_create_param(NULL, e, n, ctx, rsa->meth->bn_mod_exp,
internal.h 89 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
rsa_impl.c 172 if (!rsa->meth->bn_mod_exp(result, f, rsa->e, rsa->n, ctx, rsa->_method_mod_n)) {
504 if (!rsa->meth->bn_mod_exp(result, f, rsa->e, rsa->n, ctx,
608 if (!rsa->meth->bn_mod_exp(result, f, d, rsa->n, ctx, rsa->_method_mod_n)) {
690 if (!rsa->meth->bn_mod_exp(m1, r1, dmq1, rsa->q, ctx, rsa->_method_mod_q)) {
704 if (!rsa->meth->bn_mod_exp(r0, r1, dmp1, rsa->p, ctx, rsa->_method_mod_p)) {
750 if (!rsa->meth->bn_mod_exp(vrfy, r0, rsa->e, rsa->n, ctx,
779 if (!rsa->meth->bn_mod_exp(r0, I, d, rsa->n, ctx, rsa->_method_mod_n)) {
953 BN_mod_exp_mont /* bn_mod_exp */,
  /external/openssl/crypto/engine/
eng_cryptodev.c 1035 ret = BN_mod_exp(r, a, p, m, ctx);
1054 ret = meth->bn_mod_exp(r, a, p, m, ctx, in_mont);
1059 ret = meth->bn_mod_exp(r, a, p, m, ctx, in_mont);
1160 if (!dsa->meth->bn_mod_exp(dsa,t1,dsa->g,u1,dsa->p,ctx,mont))
1164 if (!dsa->meth->bn_mod_exp(dsa,&t2,dsa->pub_key,u2,dsa->p,ctx,mont))
    [all...]
  /external/openssl/crypto/dh/
dh_key.c 187 if (!dh->meth->bn_mod_exp(dh, pub_key, dh->g, prk, dh->p, ctx, mont)) goto err;
247 if (!dh->meth->bn_mod_exp(dh, tmp, pub_key, dh->priv_key,dh->p,ctx,mont))
dh.h 118 int (*bn_mod_exp)(const DH *dh, BIGNUM *r, const BIGNUM *a, member in struct:dh_method
  /external/openssl/crypto/rsa/
rsa_eay.c 230 if (!rsa->meth->bn_mod_exp(ret,f,rsa->e,rsa->n,ctx,
451 if (!rsa->meth->bn_mod_exp(ret,f,d,rsa->n,ctx,
583 if (!rsa->meth->bn_mod_exp(ret,f,d,rsa->n,ctx,
696 if (!rsa->meth->bn_mod_exp(ret,f,rsa->e,rsa->n,ctx,
805 if (!rsa->meth->bn_mod_exp(m1,r1,dmq1,rsa->q,ctx,
828 if (!rsa->meth->bn_mod_exp(r0,r1,dmp1,rsa->p,ctx,
863 if (!rsa->meth->bn_mod_exp(vrfy,r0,rsa->e,rsa->n,ctx,rsa->_method_mod_n)) goto err;
888 if (!rsa->meth->bn_mod_exp(r0,I,d,rsa->n,ctx,
rsa_crpt.c 242 rsa->meth->bn_mod_exp, rsa->_method_mod_n);
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
  /external/openssl/include/openssl/
dh.h 118 int (*bn_mod_exp)(const DH *dh, BIGNUM *r, const BIGNUM *a, member in struct:dh_method
dsa.h 145 int (*bn_mod_exp)(DSA *dsa, BIGNUM *r, BIGNUM *a, const BIGNUM *p, member in struct:dsa_method
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
bn.h 498 int BN_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
608 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
    [all...]
  /external/openssl/crypto/dsa/
dsa_ossl.c 94 * bn_mod_exp() handlers in the DSA_METHOD structure. We avoid the problem of
97 * if (!dsa->meth->bn_mod_exp(dsa, r,dsa->g,&k,dsa->p,ctx,
120 if((dsa)->meth->bn_mod_exp) \
121 _tmp_res53 = (dsa)->meth->bn_mod_exp((dsa), (r), (a), (p), \
dsa.h 145 int (*bn_mod_exp)(DSA *dsa, BIGNUM *r, BIGNUM *a, const BIGNUM *p, member in struct:dsa_method
  /external/chromium_org/third_party/boringssl/src/include/openssl/
rsa.h 406 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, member in struct:rsa_meth_st

Completed in 476 milliseconds