boringssl/crypto/digest/CMakeLists.txt
David Benjamin 9da9035b50 Add digest_test with tests for all existing EVP_MDs.
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>
2014-11-06 01:49:03 +00:00

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)