Home
last modified time | relevance | path

Searched refs:bn_mod_exp (Results 1 – 4 of 4) sorted by relevance

/external/boringssl/src/crypto/rsa/
Dblinding.c131 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, member
286 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, in BN_BLINDING_create_param()
317 if (bn_mod_exp != NULL) { in BN_BLINDING_create_param()
318 ret->bn_mod_exp = bn_mod_exp; in BN_BLINDING_create_param()
346 if (ret->bn_mod_exp != NULL && ret->m_ctx != NULL) { in BN_BLINDING_create_param()
347 if (!ret->bn_mod_exp(ret->A, ret->A, ret->e, ret->mod, ctx, ret->m_ctx)) { in BN_BLINDING_create_param()
444 ret = BN_BLINDING_create_param(NULL, e, n, ctx, rsa->meth->bn_mod_exp, in rsa_setup_blinding()
Drsa_impl.c170 if (!rsa->meth->bn_mod_exp(result, f, rsa->e, rsa->n, ctx, in encrypt()
480 if (!rsa->meth->bn_mod_exp(result, f, rsa->e, rsa->n, ctx, in verify_raw()
584 if (!rsa->meth->bn_mod_exp(result, f, d, rsa->n, ctx, rsa->_method_mod_n)) { in private_transform()
668 if (!rsa->meth->bn_mod_exp(m1, r1, dmq1, rsa->q, ctx, rsa->_method_mod_q)) { in mod_exp()
682 if (!rsa->meth->bn_mod_exp(r0, r1, dmp1, rsa->p, ctx, rsa->_method_mod_p)) { in mod_exp()
728 if (!rsa->meth->bn_mod_exp(vrfy, r0, rsa->e, rsa->n, ctx, in mod_exp()
757 if (!rsa->meth->bn_mod_exp(r0, I, d, rsa->n, ctx, rsa->_method_mod_n)) { in mod_exp()
Dinternal.h88 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
/external/boringssl/src/include/openssl/
Drsa.h445 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, member