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