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

  /external/boringssl/src/crypto/rsa/
blinding.c 133 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, member in struct:bn_blinding_st
288 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
319 if (bn_mod_exp != NULL) {
320 ret->bn_mod_exp = bn_mod_exp;
348 if (ret->bn_mod_exp != NULL && ret->mont != NULL) {
349 if (!ret->bn_mod_exp(ret->A, ret->A, ret->e, ret->mod, ctx, ret->mont)) {
353 if (!BN_mod_exp(ret->A, ret->A, ret->e, ret->mod, ctx)) {
445 ret = BN_BLINDING_create_param(NULL, e, n, ctx, rsa->meth->bn_mod_exp,
rsa_impl.c 161 if (!rsa->meth->bn_mod_exp(result, f, rsa->e, rsa->n, ctx, rsa->mont_n)) {
485 if (!rsa->meth->bn_mod_exp(result, f, rsa->e, rsa->n, ctx, rsa->mont_n)) {
588 if (!rsa->meth->bn_mod_exp(result, f, d, rsa->n, ctx, rsa->mont_n)) {
674 if (!rsa->meth->bn_mod_exp(m1, r1, dmq1, rsa->q, ctx, rsa->mont_q)) {
688 if (!rsa->meth->bn_mod_exp(r0, r1, dmp1, rsa->p, ctx, rsa->mont_p)) {
753 if (!rsa->meth->bn_mod_exp(m1, r1, exp, prime, ctx, ap->mont)) {
770 if (!rsa->meth->bn_mod_exp(vrfy, r0, rsa->e, rsa->n, ctx, rsa->mont_n)) {
798 if (!rsa->meth->bn_mod_exp(r0, I, d, rsa->n, ctx, rsa->mont_n)) {
1130 BN_mod_exp_mont /* bn_mod_exp */,
internal.h 108 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
  /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/boringssl/src/include/openssl/
rsa.h 526 int (*bn_mod_exp)(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, member in struct:rsa_meth_st
  /system/keymaster/
keymaster0_engine.cpp 65 rsa_method_.bn_mod_exp = BN_mod_exp_mont;
keymaster1_engine.cpp 403 method.bn_mod_exp = BN_mod_exp_mont;

Completed in 740 milliseconds