9da9035b50
Remove the existing md5_test and sha1_test. They now are all covered by digest_test. For good measure, test the one-shot functions too. Change-Id: I8e144cc563fb8817144e26cbd2e10c15642464ba Reviewed-on: https://boringssl-review.googlesource.com/2211 Reviewed-by: Adam Langley <agl@google.com>
20 lines
202 B
CMake
20 lines
202 B
CMake
include_directories(. .. ../../include)
|
|
|
|
add_library(
|
|
digest
|
|
|
|
OBJECT
|
|
|
|
digest.c
|
|
digests.c
|
|
digest_error.c
|
|
)
|
|
|
|
add_executable(
|
|
digest_test
|
|
|
|
digest_test.c
|
|
)
|
|
|
|
target_link_libraries(digest_test crypto)
|