|
6 | 6 | #include <crypto/chacha20.h> |
7 | 7 | #include <crypto/chacha_poly_aead.h> |
8 | 8 | #include <crypto/poly1305.h> |
| 9 | +#include <crypto/hkdf_sha256_32.h> |
| 10 | +#include <crypto/hmac_sha256.h> |
| 11 | +#include <crypto/hmac_sha512.h> |
9 | 12 | #include <crypto/ripemd160.h> |
10 | 13 | #include <crypto/sha1.h> |
11 | 14 | #include <crypto/sha256.h> |
12 | 15 | #include <crypto/sha3.h> |
13 | 16 | #include <crypto/sha512.h> |
14 | | -#include <crypto/hmac_sha256.h> |
15 | | -#include <crypto/hmac_sha512.h> |
16 | 17 | #include <random.h> |
17 | 18 | #include <util/strencodings.h> |
18 | 19 | #include <test/test_dash.h> |
@@ -172,6 +173,22 @@ static void TestPoly1305(const std::string &hexmessage, const std::string &hexke |
172 | 173 | BOOST_CHECK(tag == tagres); |
173 | 174 | } |
174 | 175 |
|
| 176 | +static void TestHKDF_SHA256_32(const std::string &ikm_hex, const std::string &salt_hex, const std::string &info_hex, const std::string &okm_check_hex) { |
| 177 | + std::vector<unsigned char> initial_key_material = ParseHex(ikm_hex); |
| 178 | + std::vector<unsigned char> salt = ParseHex(salt_hex); |
| 179 | + std::vector<unsigned char> info = ParseHex(info_hex); |
| 180 | + |
| 181 | + |
| 182 | + // our implementation only supports strings for the "info" and "salt", stringify them |
| 183 | + std::string salt_stringified(reinterpret_cast<char*>(salt.data()), salt.size()); |
| 184 | + std::string info_stringified(reinterpret_cast<char*>(info.data()), info.size()); |
| 185 | + |
| 186 | + CHKDF_HMAC_SHA256_L32 hkdf32(initial_key_material.data(), initial_key_material.size(), salt_stringified); |
| 187 | + unsigned char out[32]; |
| 188 | + hkdf32.Expand32(info_stringified, out); |
| 189 | + BOOST_CHECK(HexStr(out) == okm_check_hex); |
| 190 | +} |
| 191 | + |
175 | 192 | static std::string LongTestString() { |
176 | 193 | std::string ret; |
177 | 194 | for (int i=0; i<200000; i++) { |
@@ -575,6 +592,26 @@ BOOST_AUTO_TEST_CASE(poly1305_testvector) |
575 | 592 | "13000000000000000000000000000000"); |
576 | 593 | } |
577 | 594 |
|
| 595 | +BOOST_AUTO_TEST_CASE(hkdf_hmac_sha256_l32_tests) |
| 596 | +{ |
| 597 | + // Use rfc5869 test vectors but trucated to 32 bytes (our implementation only support length 32) |
| 598 | + TestHKDF_SHA256_32( |
| 599 | + /* IKM */ "0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b", |
| 600 | + /* salt */ "000102030405060708090a0b0c", |
| 601 | + /* info */ "f0f1f2f3f4f5f6f7f8f9", |
| 602 | + /* expected OKM */ "3cb25f25faacd57a90434f64d0362f2a2d2d0a90cf1a5a4c5db02d56ecc4c5bf"); |
| 603 | + TestHKDF_SHA256_32( |
| 604 | + "000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f404142434445464748494a4b4c4d4e4f", |
| 605 | + "606162636465666768696a6b6c6d6e6f707172737475767778797a7b7c7d7e7f808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6a7a8a9aaabacadaeaf", |
| 606 | + "b0b1b2b3b4b5b6b7b8b9babbbcbdbebfc0c1c2c3c4c5c6c7c8c9cacbcccdcecfd0d1d2d3d4d5d6d7d8d9dadbdcdddedfe0e1e2e3e4e5e6e7e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff", |
| 607 | + "b11e398dc80327a1c8e7f78c596a49344f012eda2d4efad8a050cc4c19afa97c"); |
| 608 | + TestHKDF_SHA256_32( |
| 609 | + "0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b", |
| 610 | + "", |
| 611 | + "", |
| 612 | + "8da4e775a563c18f715f802a063c5a31b8a11f5c5ee1879ec3454e5f3c738d2d"); |
| 613 | +} |
| 614 | + |
578 | 615 | static void TestChaCha20Poly1305AEAD(bool must_succeed, unsigned int expected_aad_length, const std::string& hex_m, const std::string& hex_k1, const std::string& hex_k2, const std::string& hex_aad_keystream, const std::string& hex_encrypted_message, const std::string& hex_encrypted_message_seq_999) |
579 | 616 | { |
580 | 617 | // we need two sequence numbers, one for the payload cipher instance... |
|
0 commit comments