aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorVitaly Chikunov <vt@altlinux.org>2019-01-21 11:53:11 +0300
committerVitaly Chikunov <vt@altlinux.org>2019-01-21 12:00:02 +0300
commitfccb868088bdd75bd8dd92d80520a76485c97773 (patch)
tree529aafa0d7b1b4b708844220bba937ef27bd3d52 /CMakeLists.txt
parent1716316de77a041bd25bf6d0c87bd4a3b5d12010 (diff)
downloadgost-engine-fccb868088bdd75bd8dd92d80520a76485c97773.zip
gost-engine-fccb868088bdd75bd8dd92d80520a76485c97773.tar.gz
gost-engine-fccb868088bdd75bd8dd92d80520a76485c97773.tar.bz2
test_params: signature verify tests for different curves
Interoperability with third party software.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5239739..b4be930 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -123,6 +123,11 @@ set(GOST_ENGINE_SOURCE_FILES
gost_omac_acpkm.c
)
+add_executable(test_params test_params.c)
+target_link_libraries(test_params gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY})
+add_test(NAME parameters
+ COMMAND test_params)
+
add_executable(test_curves test_curves.c)
target_link_libraries(test_curves gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY})
add_test(NAME curves