add bn_mod_sqrt
This commit is contained in:
parent
a32554c65c
commit
15d1f01e0f
1
.gitignore
vendored
1
.gitignore
vendored
@ -67,6 +67,7 @@ tests/asn1time*
|
||||
tests/asn1x509*
|
||||
tests/bnaddsub*
|
||||
tests/bn_mod_exp2_mont*
|
||||
tests/bn_mod_sqrt*
|
||||
tests/bn_rand_interval*
|
||||
tests/bn_to_string*
|
||||
tests/cipher*
|
||||
|
@ -108,6 +108,11 @@ add_executable(bn_mod_exp2_mont bn_mod_exp2_mont.c)
|
||||
target_link_libraries(bn_mod_exp2_mont ${OPENSSL_TEST_LIBS})
|
||||
add_test(bn_mod_exp2_mont bn_mod_exp2_mont)
|
||||
|
||||
# bn_mod_sqrt
|
||||
add_executable(bn_mod_sqrt bn_mod_sqrt.c)
|
||||
target_link_libraries(bn_mod_sqrt ${OPENSSL_TEST_LIBS})
|
||||
add_test(bn_mod_sqrt bn_mod_sqrt)
|
||||
|
||||
# bn_rand_interval
|
||||
add_executable(bn_rand_interval bn_rand_interval.c)
|
||||
target_link_libraries(bn_rand_interval ${OPENSSL_TEST_LIBS})
|
||||
|
@ -120,6 +120,11 @@ TESTS += bn_mod_exp2_mont
|
||||
check_PROGRAMS += bn_mod_exp2_mont
|
||||
bn_mod_exp2_mont_SOURCES = bn_mod_exp2_mont.c
|
||||
|
||||
# bn_mod_sqrt
|
||||
TESTS += bn_mod_sqrt
|
||||
check_PROGRAMS += bn_mod_sqrt
|
||||
bn_mod_sqrt_SOURCES = bn_mod_sqrt.c
|
||||
|
||||
# bn_rand_interval
|
||||
TESTS += bn_rand_interval
|
||||
check_PROGRAMS += bn_rand_interval
|
||||
|
Loading…
x
Reference in New Issue
Block a user