f9f72b3667
This is the only test amongst the tests for core crypto functionality that depends on crypto/bio. This change removes that dependency. This also factors out the duplicative hexdump logic into a shared function. Change-Id: Ic280a71d086555a6993c05f183b94e1d38b60932 Reviewed-on: https://boringssl-review.googlesource.com/5622 Reviewed-by: Adam Langley <agl@google.com>
20 lines
205 B
CMake
20 lines
205 B
CMake
include_directories(. .. ../../include)
|
|
|
|
add_library(
|
|
cmac
|
|
|
|
OBJECT
|
|
|
|
cmac.c
|
|
)
|
|
|
|
add_executable(
|
|
cmac_test
|
|
|
|
cmac_test.cc
|
|
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
target_link_libraries(cmac_test crypto)
|