Added Windows builds

This commit is contained in:
SChernykh
2021-09-05 09:47:48 +02:00
parent b17723f1e4
commit e527b0c660
8 changed files with 98 additions and 14 deletions

View File

@@ -38,7 +38,7 @@ TEST(keccak, hashing)
memset(buf, 0, sizeof(buf));
s.m_pos = 0;
keccak_custom([data](int offset) { return data[offset]; }, size, output.h, HASH_SIZE);
keccak_custom([data](int offset) { return data[offset]; }, len, output.h, HASH_SIZE);
s << output;
ASSERT_EQ(memcmp(buf, expected_output, HASH_SIZE * 2), 0);
};