Home
last modified time | relevance | path

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

/linux/lib/crypto/tests/
H A Dblake2b_kunit.c60 KUNIT_ASSERT_MEMEQ(test, main_hash, blake2b_keyed_testvec_consolidated, in test_blake2b_all_key_and_hash_lens()
87 KUNIT_ASSERT_MEMEQ(test, hash1, hash2, BLAKE2B_HASH_SIZE); in test_blake2b_with_guarded_key_buf()
92 KUNIT_ASSERT_MEMEQ(test, hash1, hash2, BLAKE2B_HASH_SIZE); in test_blake2b_with_guarded_key_buf()
111 KUNIT_ASSERT_MEMEQ(test, hash, guarded_hash, out_len); in test_blake2b_with_guarded_out_buf()
H A Dblake2s_kunit.c60 KUNIT_ASSERT_MEMEQ(test, main_hash, blake2s_keyed_testvec_consolidated, in test_blake2s_all_key_and_hash_lens()
87 KUNIT_ASSERT_MEMEQ(test, hash1, hash2, BLAKE2S_HASH_SIZE); in test_blake2s_with_guarded_key_buf()
92 KUNIT_ASSERT_MEMEQ(test, hash1, hash2, BLAKE2S_HASH_SIZE); in test_blake2s_with_guarded_key_buf()
111 KUNIT_ASSERT_MEMEQ(test, hash, guarded_hash, out_len); in test_blake2s_with_guarded_out_buf()
H A Dpoly1305_kunit.c104 KUNIT_ASSERT_MEMEQ(test, mac, poly1305_allones_macofmacs, in test_poly1305_allones_keys_and_message()
143 KUNIT_ASSERT_MEMEQ(test, actual_mac, expected_mac, in test_poly1305_reduction_edge_cases()
H A Dhash-test-template.h141 KUNIT_ASSERT_MEMEQ(test, hash, hash_testvec_consolidated, HASH_SIZE); in test_hash_all_lens_up_to_4096()
/linux/include/kunit/
H A Dtest.h1622 #define KUNIT_ASSERT_MEMEQ(test, left, right, size) \ macro