diff options
author | Brent Cook <busterb@gmail.com> | 2022-03-15 16:11:05 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2022-03-15 16:11:05 -0500 |
commit | 15d1f01e0f36228c501584c858697203b34e835d (patch) | |
tree | 96d1c0332c3ce08784d3c7e0daa9ffb4b4f415ef /tests/CMakeLists.txt | |
parent | a32554c65c41726737a8b457439e76cae61ff991 (diff) | |
download | portable-15d1f01e0f36228c501584c858697203b34e835d.tar.gz portable-15d1f01e0f36228c501584c858697203b34e835d.tar.bz2 portable-15d1f01e0f36228c501584c858697203b34e835d.zip |
add bn_mod_sqrt
Diffstat (limited to 'tests/CMakeLists.txt')
-rw-r--r-- | tests/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 828ef0c..fb7e499 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -108,6 +108,11 @@ add_executable(bn_mod_exp2_mont bn_mod_exp2_mont.c) | |||
108 | target_link_libraries(bn_mod_exp2_mont ${OPENSSL_TEST_LIBS}) | 108 | target_link_libraries(bn_mod_exp2_mont ${OPENSSL_TEST_LIBS}) |
109 | add_test(bn_mod_exp2_mont bn_mod_exp2_mont) | 109 | add_test(bn_mod_exp2_mont bn_mod_exp2_mont) |
110 | 110 | ||
111 | # bn_mod_sqrt | ||
112 | add_executable(bn_mod_sqrt bn_mod_sqrt.c) | ||
113 | target_link_libraries(bn_mod_sqrt ${OPENSSL_TEST_LIBS}) | ||
114 | add_test(bn_mod_sqrt bn_mod_sqrt) | ||
115 | |||
111 | # bn_rand_interval | 116 | # bn_rand_interval |
112 | add_executable(bn_rand_interval bn_rand_interval.c) | 117 | add_executable(bn_rand_interval bn_rand_interval.c) |
113 | target_link_libraries(bn_rand_interval ${OPENSSL_TEST_LIBS}) | 118 | target_link_libraries(bn_rand_interval ${OPENSSL_TEST_LIBS}) |