Lines Matching refs:bn2
147 BIGNUM *bn1 = NULL, *bn2 = NULL, *bn3 = NULL; in test_pass_rsa() local
182 || !TEST_ptr(bn2 = BN_new()) in test_pass_rsa()
183 || !TEST_true(BN_set_word(bn2, expected[E])) in test_pass_rsa()
186 || !TEST_true(RSA_set0_key(rsa, bn1, bn2, bn3))) in test_pass_rsa()
191 || !TEST_ptr(bn2 = BN_new()) in test_pass_rsa()
192 || !TEST_true(BN_set_word(bn2, expected[Q])) in test_pass_rsa()
193 || !TEST_true(RSA_set0_factors(rsa, bn1, bn2))) in test_pass_rsa()
198 || !TEST_ptr(bn2 = BN_new()) in test_pass_rsa()
199 || !TEST_true(BN_set_word(bn2, expected[DQ])) in test_pass_rsa()
202 || !TEST_true(RSA_set0_crt_params(rsa, bn1, bn2, bn3))) in test_pass_rsa()
204 bn1 = bn2 = bn3 = NULL; in test_pass_rsa()
271 BN_free(bn2); in test_pass_rsa()