Lines Matching refs:pbn
91 BIGNUM *pbn = NULL, *pbn_res = NULL; in template_public_test() local
111 || !TEST_ptr(pbn = BN_new()) in template_public_test()
112 || !TEST_true(BN_set_word(pbn, 1729)) in template_public_test()
113 || !TEST_true(OSSL_PARAM_BLD_push_BN(bld, "bignumber", pbn)) in template_public_test()
207 || !TEST_BN_eq(pbn_res, pbn) in template_public_test()
225 BN_free(pbn); in template_public_test()
247 BIGNUM *pbn = NULL, *pbn_res = NULL; in template_private_test() local
268 || !TEST_ptr(pbn = BN_secure_new()) in template_private_test()
269 || !TEST_true(BN_set_word(pbn, 1729)) in template_private_test()
270 || !TEST_true(OSSL_PARAM_BLD_push_BN(bld, "bignumber", pbn)) in template_private_test()
359 || !TEST_int_eq(BN_get_flags(pbn, BN_FLG_SECURE), BN_FLG_SECURE) in template_private_test()
367 || !TEST_int_eq(BN_get_flags(pbn, BN_FLG_SECURE), BN_FLG_SECURE) in template_private_test()
368 || !TEST_BN_eq(pbn_res, pbn) in template_private_test()
389 BN_free(pbn); in template_private_test()