a6e86bc3dc
These test vectors include the k value, so we can get a deterministic test. Change-Id: Ie3cb61a99203cd55b01f4835be7c32043309748d Reviewed-on: https://boringssl-review.googlesource.com/10701 Reviewed-by: Adam Langley <agl@google.com> Commit-Queue: Adam Langley <agl@google.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
32 lines
415 B
CMake
32 lines
415 B
CMake
include_directories(../../include)
|
|
|
|
add_library(
|
|
ecdsa
|
|
|
|
OBJECT
|
|
|
|
ecdsa.c
|
|
ecdsa_asn1.c
|
|
)
|
|
|
|
|
|
add_executable(
|
|
ecdsa_test
|
|
|
|
ecdsa_test.cc
|
|
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
add_executable(
|
|
ecdsa_sign_test
|
|
|
|
ecdsa_sign_test.cc
|
|
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
target_link_libraries(ecdsa_test crypto)
|
|
target_link_libraries(ecdsa_sign_test crypto)
|
|
add_dependencies(all_tests ecdsa_test ecdsa_sign_test)
|