diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | tests/CMakeLists.txt | 10 | ||||
-rw-r--r-- | tests/Makefile.am | 10 |
3 files changed, 18 insertions, 10 deletions
@@ -28,6 +28,14 @@ history is also available from Git. | |||
28 | 28 | ||
29 | LibreSSL Portable Release Notes: | 29 | LibreSSL Portable Release Notes: |
30 | 30 | ||
31 | 3.8.0 - Development release | ||
32 | * Internal improvements | ||
33 | - Cleaned up SHA internals | ||
34 | - Improved sieve of Eratosthenes script used for generating a table | ||
35 | of small primes | ||
36 | * Bug fixes | ||
37 | - Correctly reduce negative input to BN_mod_exp2_mont | ||
38 | |||
31 | 3.7.1 - Development release | 39 | 3.7.1 - Development release |
32 | 40 | ||
33 | * Internal improvements | 41 | * Internal improvements |
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 27a9600..900f2ea 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -108,6 +108,11 @@ add_executable(bf_test bf_test.c) | |||
108 | target_link_libraries(bf_test ${OPENSSL_TEST_LIBS}) | 108 | target_link_libraries(bf_test ${OPENSSL_TEST_LIBS}) |
109 | add_test(bf_test bf_test) | 109 | add_test(bf_test bf_test) |
110 | 110 | ||
111 | # bio_asn1 | ||
112 | add_executable(bio_asn1 bio_asn1.c) | ||
113 | target_link_libraries(bio_asn1 ${OPENSSL_TEST_LIBS}) | ||
114 | add_test(bio_asn1 bio_asn1) | ||
115 | |||
111 | # bio_chain | 116 | # bio_chain |
112 | add_executable(bio_chain bio_chain.c) | 117 | add_executable(bio_chain bio_chain.c) |
113 | target_link_libraries(bio_chain ${OPENSSL_TEST_LIBS}) | 118 | target_link_libraries(bio_chain ${OPENSSL_TEST_LIBS}) |
@@ -148,11 +153,6 @@ set_source_files_properties(bn_mod_exp.c PROPERTIES COMPILE_FLAGS | |||
148 | target_link_libraries(bn_mod_exp ${OPENSSL_TEST_LIBS}) | 153 | target_link_libraries(bn_mod_exp ${OPENSSL_TEST_LIBS}) |
149 | add_test(bn_mod_exp bn_mod_exp) | 154 | add_test(bn_mod_exp bn_mod_exp) |
150 | 155 | ||
151 | # bn_mod_exp2_mont | ||
152 | add_executable(bn_mod_exp2_mont bn_mod_exp2_mont.c) | ||
153 | target_link_libraries(bn_mod_exp2_mont ${OPENSSL_TEST_LIBS}) | ||
154 | add_test(bn_mod_exp2_mont bn_mod_exp2_mont) | ||
155 | |||
156 | # bn_mod_sqrt | 156 | # bn_mod_sqrt |
157 | add_executable(bn_mod_sqrt bn_mod_sqrt.c) | 157 | add_executable(bn_mod_sqrt bn_mod_sqrt.c) |
158 | target_link_libraries(bn_mod_sqrt ${OPENSSL_TEST_LIBS}) | 158 | target_link_libraries(bn_mod_sqrt ${OPENSSL_TEST_LIBS}) |
diff --git a/tests/Makefile.am b/tests/Makefile.am index b4d50e3..9f69157 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -126,6 +126,11 @@ TESTS += bf_test | |||
126 | check_PROGRAMS += bf_test | 126 | check_PROGRAMS += bf_test |
127 | bf_test_SOURCES = bf_test.c | 127 | bf_test_SOURCES = bf_test.c |
128 | 128 | ||
129 | # bio_asn1 | ||
130 | TESTS += bio_asn1 | ||
131 | check_PROGRAMS += bio_asn1 | ||
132 | bio_asn1_SOURCES = bio_asn1.c | ||
133 | |||
129 | # bio_chain | 134 | # bio_chain |
130 | TESTS += bio_chain | 135 | TESTS += bio_chain |
131 | check_PROGRAMS += bio_chain | 136 | check_PROGRAMS += bio_chain |
@@ -165,11 +170,6 @@ check_PROGRAMS += bn_mod_exp | |||
165 | bn_mod_exp_CPPFLAGS = $(AM_CPPFLAGS) -ULIBRESSL_INTERNAL | 170 | bn_mod_exp_CPPFLAGS = $(AM_CPPFLAGS) -ULIBRESSL_INTERNAL |
166 | bn_mod_exp_SOURCES = bn_mod_exp.c | 171 | bn_mod_exp_SOURCES = bn_mod_exp.c |
167 | 172 | ||
168 | # bn_mod_exp2_mont | ||
169 | TESTS += bn_mod_exp2_mont | ||
170 | check_PROGRAMS += bn_mod_exp2_mont | ||
171 | bn_mod_exp2_mont_SOURCES = bn_mod_exp2_mont.c | ||
172 | |||
173 | # bn_mod_sqrt | 173 | # bn_mod_sqrt |
174 | TESTS += bn_mod_sqrt | 174 | TESTS += bn_mod_sqrt |
175 | check_PROGRAMS += bn_mod_sqrt | 175 | check_PROGRAMS += bn_mod_sqrt |