Home | History | Annotate | Download | only in test

Lines Matching refs:nbn

92     BIGNUM *nbn = NULL, *nbn_res = NULL;
114 || !TEST_ptr(nbn = BN_secure_new())
115 || !TEST_true(BN_set_word(nbn, 1733))
116 || !TEST_true((BN_set_negative(nbn, 1), 1))
117 || !TEST_true(OSSL_PARAM_BLD_push_BN(bld, "negativebignumber", nbn))
213 || !TEST_BN_eq(nbn_res, nbn))
227 BN_free(nbn);
248 BIGNUM *nbn = NULL, *nbn_res = NULL;
271 || !TEST_ptr(nbn = BN_secure_new())
272 || !TEST_true(BN_set_word(nbn, 1733))
273 || !TEST_true((BN_set_negative(nbn, 1), 1))
274 || !TEST_true(OSSL_PARAM_BLD_push_BN(bld, "negativebignumber", nbn))
375 || !TEST_int_eq(BN_get_flags(nbn, BN_FLG_SECURE), BN_FLG_SECURE)
376 || !TEST_BN_eq(nbn_res, nbn))
391 BN_free(nbn);