Add HMAC as per RFC 2104 draft implementation

This commit is contained in:
hashlag
2025-08-21 02:09:30 +03:00
parent 6c2feef644
commit be03a5314c
5 changed files with 181 additions and 5 deletions

View File

@@ -12,7 +12,8 @@ set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(googletest)
set(ChaosTests_SOURCE Md4HasherTests.cpp
Md5HasherTests.cpp)
Md5HasherTests.cpp
HmacTests.cpp)
add_executable(ChaosTests ${ChaosTests_SOURCE})
target_link_libraries(ChaosTests gtest gtest_main)