Home
last modified time | relevance | path

Searched refs:TEST_BN_eq_word (Results 1 – 5 of 5) sorted by relevance

/freebsd/crypto/openssl/test/
H A Dasn1_dsa_internal_test.c98 || !TEST_BN_eq_word(r, 1) || !TEST_BN_eq_word(s, 2)) { in test_decode()
109 || !TEST_BN_eq_word(r, 1) || !TEST_BN_eq_word(s, 2)) { in test_decode()
119 || !TEST_BN_eq_word(r, 0x81) || !TEST_BN_eq_word(s, 0x82)) { in test_decode()
129 || !TEST_BN_eq_word(r, 0x100) || !TEST_BN_eq_word(s, 0x200)) { in test_decode()
H A Dtest_test.c318 || !TEST(1, TEST_BN_eq_word(a, 0)) in test_bignum()
319 || !TEST(0, TEST_BN_eq_word(a, 30)) in test_bignum()
334 || !TEST(1, TEST_BN_eq_word(b, 1)) in test_bignum()
347 || !TEST(0, TEST_BN_eq_word(c, 334739439)) in test_bignum()
H A Drsa_sp800_56b_test.c304 && TEST_BN_eq_word(key->n, N) in test_check_crt_components()
305 && TEST_BN_eq_word(key->dmp1, DP) in test_check_crt_components()
306 && TEST_BN_eq_word(key->dmq1, DQ) in test_check_crt_components()
307 && TEST_BN_eq_word(key->iqmp, QINV) in test_check_crt_components()
H A Dbntest.c1853 || !TEST_BN_eq_word(bn, 0) in test_dec2bn()
1863 || !TEST_BN_eq_word(bn, 256) in test_dec2bn()
1883 || !TEST_BN_eq_word(bn, 1) in test_dec2bn()
1930 || !TEST_BN_eq_word(bn, 0x256) in test_hex2bn()
1950 || !TEST_BN_eq_word(bn, 0xCB) in test_hex2bn()
1969 || !TEST_BN_eq_word(bn, 0xabc) in test_hex2bn()
1996 || !TEST_BN_eq_word(bn, 256) in test_asc2bn()
2006 || !TEST_BN_eq_word(bn, 0x1234) in test_asc2bn()
2011 || !TEST_BN_eq_word(bn, 0x1234) in test_asc2bn()
2026 || !TEST_BN_eq_word(bn, 123) in test_asc2bn()
[all …]
H A Dtestutil.h523 # define TEST_BN_eq_word(a, w) test_BN_eq_word(__FILE__, __LINE__, #a, #w, a, w) macro