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

1 2

  /external/chromium_org/third_party/openssl/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))
  /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))
  /external/chromium_org/third_party/openssl/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/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/chromium_org/third_party/openssl/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/chromium_org/third_party/openssl/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/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
  /system/security/keystore-engine/
rsa_meth.cpp 191 NULL, /* bn_mod_exp */
207 keystore_rsa_meth.bn_mod_exp = rsa_meth->bn_mod_exp;
  /external/chromium_org/third_party/openssl/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 140 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
  /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 140 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
  /external/chromium_org/third_party/openssl/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.h 140 int (*bn_mod_exp)(DSA *dsa, BIGNUM *r, BIGNUM *a, const BIGNUM *p, member in struct:dsa_method
  /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.h 140 int (*bn_mod_exp)(DSA *dsa, BIGNUM *r, BIGNUM *a, const BIGNUM *p, member in struct:dsa_method

Completed in 1127 milliseconds

1 2