Add the MD5 message digest algorithm draft implementation

This commit is contained in:
hashlag
2025-08-03 20:27:20 +03:00
parent cee015bf54
commit 0bd4161d72
3 changed files with 478 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ FetchContent_Declare(
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(googletest)
add_executable(ChaosTests Md4HasherTests.cpp)
add_executable(ChaosTests Md4HasherTests.cpp Md5HasherTests.cpp)
target_link_libraries(ChaosTests gtest gtest_main)
target_include_directories(ChaosTests PRIVATE
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/Chaos>