Lines Matching defs:bn
15 #include <openssl/bn.h>
23 #include "crypto/bn.h"
31 BIGNUM *bn = NULL;
33 ret = TEST_ptr(bn = BN_new())
35 && TEST_true(BN_set_word(bn, 11))
37 && TEST_true(ossl_bn_miller_rabin_is_prime(bn, 10, ctx, NULL, 1,
40 BN_free(bn);
52 BIGNUM *bn = NULL;
54 ret = TEST_ptr(bn = BN_new())
56 && TEST_true(BN_set_word(bn, composites[id]))
57 && TEST_true(ossl_bn_miller_rabin_is_prime(bn, 10, ctx, NULL, 1,
61 BN_free(bn);