ff452c1d0e
This version is taken from OpenSSL 1.0.2 with tweaks to support the changes that we have made to md32_common.h. None of the assembly implementations have been imported. This makes supporting nmap easier. Change-Id: Iae9241abdbc9021cc6bc35a65b40c3d739011ccc Reviewed-on: https://boringssl-review.googlesource.com/7402 Reviewed-by: David Benjamin <davidben@google.com>
22 lines
303 B
CMake
22 lines
303 B
CMake
include_directories(../../include)
|
|
|
|
add_library(
|
|
ripemd_decrepit
|
|
|
|
OBJECT
|
|
|
|
ripemd.c
|
|
)
|
|
|
|
add_executable(
|
|
ripemd_test
|
|
|
|
ripemd_test.cc
|
|
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
target_link_libraries(ripemd_test crypto)
|
|
target_link_libraries(ripemd_test decrepit)
|
|
add_dependencies(all_tests ripemd_test)
|