Home | History | Annotate | Download | only in tpm2

Lines Matching refs:bnT

1197    BIGNUM             *bnT;
1221 bnT = BN_CTX_get(context);
1301 BN_sub(bnT, bnQ, bnP);
1303 BN_sub(bnT, bnP, bnQ);
1304 if(BN_num_bits(bnT) < 100) // Difference has to be at least 100 bits
1344 BN_sub(bnT, bnN, bnP);
1345 BN_sub(bnT, bnT, bnQ);
1346 BN_add_word(bnT, 1);
1351 if(BN_mod_inverse(bnT, bnE, bnT, context) == NULL || BN_is_zero(bnT))
1380 || BN_mod_exp(bnQ, bnQ, bnT, bnN, context) != 1)