Lines Matching refs:bn2
143 BIGNUM *bn1 = NULL, *bn2 = NULL, *bn3 = NULL; in test_pass_rsa() local
178 || !TEST_ptr(bn2 = BN_new()) in test_pass_rsa()
179 || !TEST_true(BN_set_word(bn2, expected[E])) in test_pass_rsa()
182 || !TEST_true(RSA_set0_key(rsa, bn1, bn2, bn3))) in test_pass_rsa()
187 || !TEST_ptr(bn2 = BN_new()) in test_pass_rsa()
188 || !TEST_true(BN_set_word(bn2, expected[Q])) in test_pass_rsa()
189 || !TEST_true(RSA_set0_factors(rsa, bn1, bn2))) in test_pass_rsa()
194 || !TEST_ptr(bn2 = BN_new()) in test_pass_rsa()
195 || !TEST_true(BN_set_word(bn2, expected[DQ])) in test_pass_rsa()
198 || !TEST_true(RSA_set0_crt_params(rsa, bn1, bn2, bn3))) in test_pass_rsa()
200 bn1 = bn2 = bn3 = NULL; in test_pass_rsa()
267 BN_free(bn2); in test_pass_rsa()