Home | History | Annotate | Download | only in tpm2

Lines Matching refs:bnE

41    BIGNUM              *bnE;
52 bnE = BN_CTX_get(context);
91 BN_set_word(bnE, key->exponent);
92 if(BN_mod_inverse(bnD, bnE, bnPhi, context) == NULL)
146 BIGNUM *bnE;
163 bnE = BN_CTX_get(context); // public exponent (e)
223 BN_set_word(bnE, exponent);
224 if(BN_mod_inverse(bnD, bnE, bnPhi, context) == NULL)
1198 BIGNUM *bnE;
1222 bnE = BN_CTX_get(context);
1248 BN_set_word(bnE, e);
1351 if(BN_mod_inverse(bnT, bnE, bnT, context) == NULL || BN_is_zero(bnT))
1378 || BN_mod_exp(bnQ, bnP, bnE, bnN, context) != 1