Fix possible infinite loop in BN_mod_sqrt()
[openssl.git] / NEWS.md
1 NEWS
2 ====
3
4 This file gives a brief overview of the major changes between each OpenSSL
5 release. For more details please read the CHANGES file.
6
7 OpenSSL Releases
8 ----------------
9
10  - [OpenSSL 3.0](#openssl-30)
11  - [OpenSSL 1.1.1](#openssl-111)
12  - [OpenSSL 1.1.0](#openssl-110)
13  - [OpenSSL 1.0.2](#openssl-102)
14  - [OpenSSL 1.0.1](#openssl-101)
15  - [OpenSSL 1.0.0](#openssl-100)
16  - [OpenSSL 0.9.x](#openssl-09x)
17
18 OpenSSL 3.0
19 -----------
20
21 ### Major changes between OpenSSL 3.0.1 and OpenSSL 3.0.2 [under development]
22
23   * none
24
25 ### Major changes between OpenSSL 3.0.0 and OpenSSL 3.0.1 [14 Dec 2021]
26
27   * Fixed invalid handling of X509_verify_cert() internal errors in libssl
28     ([CVE-2021-4044])
29   * Allow fetching an operation from the provider that owns an unexportable key
30     as a fallback if that is still allowed by the property query.
31
32 ### Major changes between OpenSSL 1.1.1 and OpenSSL 3.0.0 [7 sep 2021]
33
34   * Enhanced 'openssl list' with many new options.
35   * Added migration guide to man7.
36   * Implemented support for fully "pluggable" TLSv1.3 groups.
37   * Added suport for Kernel TLS (KTLS).
38   * Changed the license to the Apache License v2.0.
39   * Moved all variations of the EVP ciphers CAST5, BF, IDEA, SEED, RC2,
40     RC4, RC5, and DES to the legacy provider.
41   * Moved the EVP digests MD2, MD4, MDC2, WHIRLPOOL and RIPEMD-160 to the legacy
42     provider.
43   * Added convenience functions for generating asymmetric key pairs.
44   * Deprecated the `OCSP_REQ_CTX` type and functions.
45   * Deprecated the `EC_KEY` and `EC_KEY_METHOD` types and functions.
46   * Deprecated the `RSA` and `RSA_METHOD` types and functions.
47   * Deprecated the `DSA` and `DSA_METHOD` types and functions.
48   * Deprecated the `DH` and `DH_METHOD` types and functions.
49   * Deprecated the `ERR_load_` functions.
50   * Remove the `RAND_DRBG` API.
51   * Deprecated the `ENGINE` API.
52   * Added `OSSL_LIB_CTX`, a libcrypto library context.
53   * Added various `_ex` functions to the OpenSSL API that support using
54     a non-default `OSSL_LIB_CTX`.
55   * Interactive mode is removed from the 'openssl' program.
56   * The X25519, X448, Ed25519, Ed448, SHAKE128 and SHAKE256 algorithms are
57     included in the FIPS provider.
58   * X509 certificates signed using SHA1 are no longer allowed at security
59     level 1 or higher. The default security level for TLS is 1, so
60     certificates signed using SHA1 are by default no longer trusted to
61     authenticate servers or clients.
62   * enable-crypto-mdebug and enable-crypto-mdebug-backtrace were mostly
63     disabled; the project uses address sanitize/leak-detect instead.
64   * Added a Certificate Management Protocol (CMP, RFC 4210) implementation
65     also covering CRMF (RFC 4211) and HTTP transfer (RFC 6712).
66     It is part of the crypto lib and adds a 'cmp' app with a demo configuration.
67     All widely used CMP features are supported for both clients and servers.
68   * Added a proper HTTP client supporting GET with optional redirection, POST,
69     arbitrary request and response content types, TLS, persistent connections,
70     connections via HTTP(s) proxies, connections and exchange via user-defined
71     BIOs (allowing implicit connections), and timeout checks.
72   * Added util/check-format.pl for checking adherence to the coding guidelines.
73   * Added OSSL_ENCODER, a generic encoder API.
74   * Added OSSL_DECODER, a generic decoder API.
75   * Added OSSL_PARAM_BLD, an easier to use API to OSSL_PARAM.
76   * Added error raising macros, ERR_raise() and ERR_raise_data().
77   * Deprecated ERR_put_error(), ERR_get_error_line(), ERR_get_error_line_data(),
78     ERR_peek_error_line_data(), ERR_peek_last_error_line_data() and
79     ERR_func_error_string().
80   * Added OSSL_PROVIDER_available(), to check provider availibility.
81   * Added 'openssl mac' that uses the EVP_MAC API.
82   * Added 'openssl kdf' that uses the EVP_KDF API.
83   * Add OPENSSL_info() and 'openssl info' to get built-in data.
84   * Add support for enabling instrumentation through trace and debug
85     output.
86   * Changed our version number scheme and set the next major release to
87     3.0.0
88   * Added EVP_MAC, an EVP layer MAC API, and a generic EVP_PKEY to EVP_MAC
89     bridge.  Supported MACs are: BLAKE2, CMAC, GMAC, HMAC, KMAC, POLY1305
90     and SIPHASH.
91   * Removed the heartbeat message in DTLS feature.
92   * Added EVP_KDF, an EVP layer KDF and PRF API, and a generic EVP_PKEY to
93     EVP_KDF bridge.  Supported KDFs are: HKDF, KBKDF, KRB5 KDF, PBKDF2,
94     PKCS12 KDF, SCRYPT, SSH KDF, SSKDF, TLS1 PRF, X9.42 KDF and X9.63 KDF.
95   * All of the low-level MD2, MD4, MD5, MDC2, RIPEMD160, SHA1, SHA224,
96     SHA256, SHA384, SHA512 and Whirlpool digest functions have been
97     deprecated.
98   * All of the low-level AES, Blowfish, Camellia, CAST, DES, IDEA, RC2,
99     RC4, RC5 and SEED cipher functions have been deprecated.
100   * All of the low-level DH, DSA, ECDH, ECDSA and RSA public key functions
101     have been deprecated.
102   * SSL 3, TLS 1.0, TLS 1.1, and DTLS 1.0 only work at security level 0.
103   * Added providers, a new pluggability concept that will replace the
104     ENGINE API and ENGINE implementations.
105
106 OpenSSL 1.1.1
107 -------------
108
109 ### Major changes between OpenSSL 1.1.1k and OpenSSL 1.1.1l [24 Aug 2021]
110
111   * Fixed an SM2 Decryption Buffer Overflow ([CVE-2021-3711])
112   * Fixed various read buffer overruns processing ASN.1 strings ([CVE-2021-3712])
113
114 ### Major changes between OpenSSL 1.1.1j and OpenSSL 1.1.1k [25 Mar 2021]
115
116   * Fixed a problem with verifying a certificate chain when using the
117     X509_V_FLAG_X509_STRICT flag ([CVE-2021-3450])
118   * Fixed an issue where an OpenSSL TLS server may crash if sent a maliciously
119     crafted renegotiation ClientHello message from a client ([CVE-2021-3449])
120
121 ### Major changes between OpenSSL 1.1.1i and OpenSSL 1.1.1j [16 Feb 2021]
122
123   * Fixed a NULL pointer deref in the X509_issuer_and_serial_hash()
124     function ([CVE-2021-23841])
125   * Fixed the RSA_padding_check_SSLv23() function and the RSA_SSLV23_PADDING
126     padding mode to correctly check for rollback attacks
127   * Fixed an overflow in the EVP_CipherUpdate, EVP_EncryptUpdate and
128     EVP_DecryptUpdate functions ([CVE-2021-23840])
129   * Fixed SRP_Calc_client_key so that it runs in constant time
130
131 ### Major changes between OpenSSL 1.1.1h and OpenSSL 1.1.1i [8 Dec 2020]
132
133   * Fixed NULL pointer deref in GENERAL_NAME_cmp ([CVE-2020-1971])
134
135 ### Major changes between OpenSSL 1.1.1g and OpenSSL 1.1.1h [22 Sep 2020]
136
137   * Disallow explicit curve parameters in verifications chains when
138     X509_V_FLAG_X509_STRICT is used
139   * Enable 'MinProtocol' and 'MaxProtocol' to configure both TLS and DTLS
140     contexts
141   * Oracle Developer Studio will start reporting deprecation warnings
142
143 ### Major changes between OpenSSL 1.1.1f and OpenSSL 1.1.1g [21 Apr 2020]
144
145   * Fixed segmentation fault in SSL_check_chain() ([CVE-2020-1967])
146
147 ### Major changes between OpenSSL 1.1.1e and OpenSSL 1.1.1f [31 Mar 2020]
148
149   * Revert the unexpected EOF reporting via SSL_ERROR_SSL
150
151 ### Major changes between OpenSSL 1.1.1d and OpenSSL 1.1.1e [17 Mar 2020]
152
153   * Fixed an overflow bug in the x64_64 Montgomery squaring procedure
154     used in exponentiation with 512-bit moduli ([CVE-2019-1551])
155
156 ### Major changes between OpenSSL 1.1.1c and OpenSSL 1.1.1d [10 Sep 2019]
157
158   * Fixed a fork protection issue ([CVE-2019-1549])
159   * Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey
160     ([CVE-2019-1563])
161   * For built-in EC curves, ensure an EC_GROUP built from the curve name is
162     used even when parsing explicit parameters
163   * Compute ECC cofactors if not provided during EC_GROUP construction
164     ([CVE-2019-1547])
165   * Early start up entropy quality from the DEVRANDOM seed source has been
166     improved for older Linux systems
167   * Correct the extended master secret constant on EBCDIC systems
168   * Use Windows installation paths in the mingw builds ([CVE-2019-1552])
169   * Changed DH_check to accept parameters with order q and 2q subgroups
170   * Significantly reduce secure memory usage by the randomness pools
171   * Revert the DEVRANDOM_WAIT feature for Linux systems
172
173 ### Major changes between OpenSSL 1.1.1b and OpenSSL 1.1.1c [28 May 2019]
174
175   * Prevent over long nonces in ChaCha20-Poly1305 ([CVE-2019-1543])
176
177 ### Major changes between OpenSSL 1.1.1a and OpenSSL 1.1.1b [26 Feb 2019]
178
179   * Change the info callback signals for the start and end of a post-handshake
180     message exchange in TLSv1.3.
181   * Fix a bug in DTLS over SCTP. This breaks interoperability with older
182     versions of OpenSSL like OpenSSL 1.1.0 and OpenSSL 1.0.2.
183
184 ### Major changes between OpenSSL 1.1.1 and OpenSSL 1.1.1a [20 Nov 2018]
185
186   * Timing vulnerability in DSA signature generation ([CVE-2018-0734])
187   * Timing vulnerability in ECDSA signature generation ([CVE-2018-0735])
188
189 ### Major changes between OpenSSL 1.1.0i and OpenSSL 1.1.1 [11 Sep 2018]
190
191   * Support for TLSv1.3 added. The TLSv1.3 implementation includes:
192     * Fully compliant implementation of RFC8446 (TLSv1.3) on by default
193     * Early data (0-RTT)
194     * Post-handshake authentication and key update
195     * Middlebox Compatibility Mode
196     * TLSv1.3 PSKs
197     * Support for all five RFC8446 ciphersuites
198     * RSA-PSS signature algorithms (backported to TLSv1.2)
199     * Configurable session ticket support
200     * Stateless server support
201     * Rewrite of the packet construction code for "safer" packet handling
202     * Rewrite of the extension handling code
203     For further important information, see the [TLS1.3 page](
204     https://wiki.openssl.org/index.php/TLS1.3) in the OpenSSL Wiki.
205
206   * Complete rewrite of the OpenSSL random number generator to introduce the
207     following capabilities
208       * The default RAND method now utilizes an AES-CTR DRBG according to
209         NIST standard SP 800-90Ar1.
210       * Support for multiple DRBG instances with seed chaining.
211       * There is a public and private DRBG instance.
212       * The DRBG instances are fork-safe.
213       * Keep all global DRBG instances on the secure heap if it is enabled.
214       * The public and private DRBG instance are per thread for lock free
215       operation
216   * Support for various new cryptographic algorithms including:
217       * SHA3
218       * SHA512/224 and SHA512/256
219       * EdDSA (both Ed25519 and Ed448) including X509 and TLS support
220       * X448 (adding to the existing X25519 support in 1.1.0)
221       * Multi-prime RSA
222       * SM2
223       * SM3
224       * SM4
225       * SipHash
226       * ARIA (including TLS support)
227   * Significant Side-Channel attack security improvements
228   * Add a new ClientHello callback to provide the ability to adjust the SSL
229   object at an early stage.
230   * Add 'Maximum Fragment Length' TLS extension negotiation and support
231   * A new STORE module, which implements a uniform and URI based reader of
232    stores that can contain keys, certificates, CRLs and numerous other
233   objects.
234   * Move the display of configuration data to configdata.pm.
235   * Allow GNU style "make variables" to be used with Configure.
236   * Claim the namespaces OSSL and OPENSSL, represented as symbol prefixes
237   * Rewrite of devcrypto engine
238
239 OpenSSL 1.1.0
240 -------------
241
242 ### Major changes between OpenSSL 1.1.0k and OpenSSL 1.1.0l [10 Sep 2019]
243
244   * Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey
245     ([CVE-2019-1563])
246   * For built-in EC curves, ensure an EC_GROUP built from the curve name is
247     used even when parsing explicit parameters
248   * Compute ECC cofactors if not provided during EC_GROUP construction
249     ([CVE-2019-1547])
250   * Use Windows installation paths in the mingw builds ([CVE-2019-1552])
251
252 ### Major changes between OpenSSL 1.1.0j and OpenSSL 1.1.0k [28 May 2019]
253
254   * Prevent over long nonces in ChaCha20-Poly1305 ([CVE-2019-1543])
255
256 ### Major changes between OpenSSL 1.1.0i and OpenSSL 1.1.0j [20 Nov 2018]
257
258   * Timing vulnerability in DSA signature generation ([CVE-2018-0734])
259   * Timing vulnerability in ECDSA signature generation ([CVE-2018-0735])
260
261 ### Major changes between OpenSSL 1.1.0h and OpenSSL 1.1.0i [14 Aug 2018]
262
263   * Client DoS due to large DH parameter ([CVE-2018-0732])
264   * Cache timing vulnerability in RSA Key Generation ([CVE-2018-0737])
265
266 ### Major changes between OpenSSL 1.1.0g and OpenSSL 1.1.0h [27 Mar 2018]
267
268   * Constructed ASN.1 types with a recursive definition could exceed the
269     stack ([CVE-2018-0739])
270   * Incorrect CRYPTO_memcmp on HP-UX PA-RISC ([CVE-2018-0733])
271   * rsaz_1024_mul_avx2 overflow bug on x86_64 ([CVE-2017-3738])
272
273 ### Major changes between OpenSSL 1.1.0f and OpenSSL 1.1.0g [2 Nov 2017]
274
275   * bn_sqrx8x_internal carry bug on x86_64 ([CVE-2017-3736])
276   * Malformed X.509 IPAddressFamily could cause OOB read ([CVE-2017-3735])
277
278 ### Major changes between OpenSSL 1.1.0e and OpenSSL 1.1.0f [25 May 2017]
279
280   * config now recognises 64-bit mingw and chooses mingw64 instead of mingw
281
282 ### Major changes between OpenSSL 1.1.0d and OpenSSL 1.1.0e [16 Feb 2017]
283
284   * Encrypt-Then-Mac renegotiation crash ([CVE-2017-3733])
285
286 ### Major changes between OpenSSL 1.1.0c and OpenSSL 1.1.0d [26 Jan 2017]
287
288   * Truncated packet could crash via OOB read ([CVE-2017-3731])
289   * Bad (EC)DHE parameters cause a client crash ([CVE-2017-3730])
290   * BN_mod_exp may produce incorrect results on x86_64 ([CVE-2017-3732])
291
292 ### Major changes between OpenSSL 1.1.0b and OpenSSL 1.1.0c [10 Nov 2016]
293
294   * ChaCha20/Poly1305 heap-buffer-overflow ([CVE-2016-7054])
295   * CMS Null dereference ([CVE-2016-7053])
296   * Montgomery multiplication may produce incorrect results ([CVE-2016-7055])
297
298 ### Major changes between OpenSSL 1.1.0a and OpenSSL 1.1.0b [26 Sep 2016]
299
300   * Fix Use After Free for large message sizes ([CVE-2016-6309])
301
302 ### Major changes between OpenSSL 1.1.0 and OpenSSL 1.1.0a [22 Sep 2016]
303
304   * OCSP Status Request extension unbounded memory growth ([CVE-2016-6304])
305   * SSL_peek() hang on empty record ([CVE-2016-6305])
306   * Excessive allocation of memory in tls_get_message_header()
307     ([CVE-2016-6307])
308   * Excessive allocation of memory in dtls1_preprocess_fragment()
309     ([CVE-2016-6308])
310
311 ### Major changes between OpenSSL 1.0.2h and OpenSSL 1.1.0 [25 Aug 2016]
312
313   * Copyright text was shrunk to a boilerplate that points to the license
314   * "shared" builds are now the default when possible
315   * Added support for "pipelining"
316   * Added the AFALG engine
317   * New threading API implemented
318   * Support for ChaCha20 and Poly1305 added to libcrypto and libssl
319   * Support for extended master secret
320   * CCM ciphersuites
321   * Reworked test suite, now based on perl, Test::Harness and Test::More
322   * *Most* libcrypto and libssl public structures were made opaque,
323     including:
324     BIGNUM and associated types, EC_KEY and EC_KEY_METHOD,
325     DH and DH_METHOD, DSA and DSA_METHOD, RSA and RSA_METHOD,
326     BIO and BIO_METHOD, EVP_MD_CTX, EVP_MD, EVP_CIPHER_CTX,
327     EVP_CIPHER, EVP_PKEY and associated types, HMAC_CTX,
328     X509, X509_CRL, X509_OBJECT, X509_STORE_CTX, X509_STORE,
329     X509_LOOKUP, X509_LOOKUP_METHOD
330   * libssl internal structures made opaque
331   * SSLv2 support removed
332   * Kerberos ciphersuite support removed
333   * RC4 removed from DEFAULT ciphersuites in libssl
334   * 40 and 56 bit cipher support removed from libssl
335   * All public header files moved to include/openssl, no more symlinking
336   * SSL/TLS state machine, version negotiation and record layer rewritten
337   * EC revision: now operations use new EC_KEY_METHOD.
338   * Support for OCB mode added to libcrypto
339   * Support for asynchronous crypto operations added to libcrypto and libssl
340   * Deprecated interfaces can now be disabled at build time either
341     relative to the latest release via the "no-deprecated" Configure
342     argument, or via the "--api=1.1.0|1.0.0|0.9.8" option.
343   * Application software can be compiled with -DOPENSSL_API_COMPAT=version
344     to ensure that features deprecated in that version are not exposed.
345   * Support for RFC6698/RFC7671 DANE TLSA peer authentication
346   * Change of Configure to use --prefix as the main installation
347     directory location rather than --openssldir.  The latter becomes
348     the directory for certs, private key and openssl.cnf exclusively.
349   * Reworked BIO networking library, with full support for IPv6.
350   * New "unified" build system
351   * New security levels
352   * Support for scrypt algorithm
353   * Support for X25519
354   * Extended SSL_CONF support using configuration files
355   * KDF algorithm support. Implement TLS PRF as a KDF.
356   * Support for Certificate Transparency
357   * HKDF support.
358
359 OpenSSL 1.0.2
360 -------------
361
362 ### Major changes between OpenSSL 1.0.2s and OpenSSL 1.0.2t [10 Sep 2019]
363
364   * Fixed a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey
365     ([CVE-2019-1563])
366   * For built-in EC curves, ensure an EC_GROUP built from the curve name is
367     used even when parsing explicit parameters
368   * Compute ECC cofactors if not provided during EC_GROUP construction
369     ([CVE-2019-1547])
370   * Document issue with installation paths in diverse Windows builds
371     ([CVE-2019-1552])
372
373 ### Major changes between OpenSSL 1.0.2r and OpenSSL 1.0.2s [28 May 2019]
374
375   * None
376
377 ### Major changes between OpenSSL 1.0.2q and OpenSSL 1.0.2r [26 Feb 2019]
378
379   * 0-byte record padding oracle ([CVE-2019-1559])
380
381 ### Major changes between OpenSSL 1.0.2p and OpenSSL 1.0.2q [20 Nov 2018]
382
383   * Microarchitecture timing vulnerability in ECC scalar multiplication ([CVE-2018-5407])
384   * Timing vulnerability in DSA signature generation ([CVE-2018-0734])
385
386 ### Major changes between OpenSSL 1.0.2o and OpenSSL 1.0.2p [14 Aug 2018]
387
388   * Client DoS due to large DH parameter ([CVE-2018-0732])
389   * Cache timing vulnerability in RSA Key Generation ([CVE-2018-0737])
390
391 ### Major changes between OpenSSL 1.0.2n and OpenSSL 1.0.2o [27 Mar 2018]
392
393   * Constructed ASN.1 types with a recursive definition could exceed the
394     stack ([CVE-2018-0739])
395
396 ### Major changes between OpenSSL 1.0.2m and OpenSSL 1.0.2n [7 Dec 2017]
397
398   * Read/write after SSL object in error state ([CVE-2017-3737])
399   * rsaz_1024_mul_avx2 overflow bug on x86_64 ([CVE-2017-3738])
400
401 ### Major changes between OpenSSL 1.0.2l and OpenSSL 1.0.2m [2 Nov 2017]
402
403   * bn_sqrx8x_internal carry bug on x86_64 ([CVE-2017-3736])
404   * Malformed X.509 IPAddressFamily could cause OOB read ([CVE-2017-3735])
405
406 ### Major changes between OpenSSL 1.0.2k and OpenSSL 1.0.2l [25 May 2017]
407
408   * config now recognises 64-bit mingw and chooses mingw64 instead of mingw
409
410 ### Major changes between OpenSSL 1.0.2j and OpenSSL 1.0.2k [26 Jan 2017]
411
412   * Truncated packet could crash via OOB read ([CVE-2017-3731])
413   * BN_mod_exp may produce incorrect results on x86_64 ([CVE-2017-3732])
414   * Montgomery multiplication may produce incorrect results ([CVE-2016-7055])
415
416 ### Major changes between OpenSSL 1.0.2i and OpenSSL 1.0.2j [26 Sep 2016]
417
418   * Missing CRL sanity check ([CVE-2016-7052])
419
420 ### Major changes between OpenSSL 1.0.2h and OpenSSL 1.0.2i [22 Sep 2016]
421
422   * OCSP Status Request extension unbounded memory growth ([CVE-2016-6304])
423   * SWEET32 Mitigation ([CVE-2016-2183])
424   * OOB write in MDC2_Update() ([CVE-2016-6303])
425   * Malformed SHA512 ticket DoS ([CVE-2016-6302])
426   * OOB write in BN_bn2dec() ([CVE-2016-2182])
427   * OOB read in TS_OBJ_print_bio() ([CVE-2016-2180])
428   * Pointer arithmetic undefined behaviour ([CVE-2016-2177])
429   * Constant time flag not preserved in DSA signing ([CVE-2016-2178])
430   * DTLS buffered message DoS ([CVE-2016-2179])
431   * DTLS replay protection DoS ([CVE-2016-2181])
432   * Certificate message OOB reads ([CVE-2016-6306])
433
434 ### Major changes between OpenSSL 1.0.2g and OpenSSL 1.0.2h [3 May 2016]
435
436   * Prevent padding oracle in AES-NI CBC MAC check ([CVE-2016-2107])
437   * Fix EVP_EncodeUpdate overflow ([CVE-2016-2105])
438   * Fix EVP_EncryptUpdate overflow ([CVE-2016-2106])
439   * Prevent ASN.1 BIO excessive memory allocation ([CVE-2016-2109])
440   * EBCDIC overread ([CVE-2016-2176])
441   * Modify behavior of ALPN to invoke callback after SNI/servername
442     callback, such that updates to the SSL_CTX affect ALPN.
443   * Remove LOW from the DEFAULT cipher list.  This removes singles DES from
444     the default.
445   * Only remove the SSLv2 methods with the no-ssl2-method option.
446
447 ### Major changes between OpenSSL 1.0.2f and OpenSSL 1.0.2g [1 Mar 2016]
448
449   * Disable weak ciphers in SSLv3 and up in default builds of OpenSSL.
450   * Disable SSLv2 default build, default negotiation and weak ciphers
451     ([CVE-2016-0800])
452   * Fix a double-free in DSA code ([CVE-2016-0705])
453   * Disable SRP fake user seed to address a server memory leak
454     ([CVE-2016-0798])
455   * Fix BN_hex2bn/BN_dec2bn NULL pointer deref/heap corruption
456     ([CVE-2016-0797])
457   * Fix memory issues in BIO_*printf functions ([CVE-2016-0799])
458   * Fix side channel attack on modular exponentiation ([CVE-2016-0702])
459
460 ### Major changes between OpenSSL 1.0.2e and OpenSSL 1.0.2f [28 Jan 2016]
461
462   * DH small subgroups ([CVE-2016-0701])
463   * SSLv2 doesn't block disabled ciphers ([CVE-2015-3197])
464
465 ### Major changes between OpenSSL 1.0.2d and OpenSSL 1.0.2e [3 Dec 2015]
466
467   * BN_mod_exp may produce incorrect results on x86_64 ([CVE-2015-3193])
468   * Certificate verify crash with missing PSS parameter ([CVE-2015-3194])
469   * X509_ATTRIBUTE memory leak ([CVE-2015-3195])
470   * Rewrite EVP_DecodeUpdate (base64 decoding) to fix several bugs
471   * In DSA_generate_parameters_ex, if the provided seed is too short,
472     return an error
473
474 ### Major changes between OpenSSL 1.0.2c and OpenSSL 1.0.2d [9 Jul 2015]
475
476   * Alternate chains certificate forgery ([CVE-2015-1793])
477   * Race condition handling PSK identify hint ([CVE-2015-3196])
478
479 ### Major changes between OpenSSL 1.0.2b and OpenSSL 1.0.2c [12 Jun 2015]
480
481   * Fix HMAC ABI incompatibility
482
483 ### Major changes between OpenSSL 1.0.2a and OpenSSL 1.0.2b [11 Jun 2015]
484
485   * Malformed ECParameters causes infinite loop ([CVE-2015-1788])
486   * Exploitable out-of-bounds read in X509_cmp_time ([CVE-2015-1789])
487   * PKCS7 crash with missing EnvelopedContent ([CVE-2015-1790])
488   * CMS verify infinite loop with unknown hash function ([CVE-2015-1792])
489   * Race condition handling NewSessionTicket ([CVE-2015-1791])
490
491 ### Major changes between OpenSSL 1.0.2 and OpenSSL 1.0.2a [19 Mar 2015]
492
493   * OpenSSL 1.0.2 ClientHello sigalgs DoS fix ([CVE-2015-0291])
494   * Multiblock corrupted pointer fix ([CVE-2015-0290])
495   * Segmentation fault in DTLSv1_listen fix ([CVE-2015-0207])
496   * Segmentation fault in ASN1_TYPE_cmp fix ([CVE-2015-0286])
497   * Segmentation fault for invalid PSS parameters fix ([CVE-2015-0208])
498   * ASN.1 structure reuse memory corruption fix ([CVE-2015-0287])
499   * PKCS7 NULL pointer dereferences fix ([CVE-2015-0289])
500   * DoS via reachable assert in SSLv2 servers fix ([CVE-2015-0293])
501   * Empty CKE with client auth and DHE fix ([CVE-2015-1787])
502   * Handshake with unseeded PRNG fix ([CVE-2015-0285])
503   * Use After Free following d2i_ECPrivatekey error fix ([CVE-2015-0209])
504   * X509_to_X509_REQ NULL pointer deref fix ([CVE-2015-0288])
505   * Removed the export ciphers from the DEFAULT ciphers
506
507 ### Major changes between OpenSSL 1.0.1l and OpenSSL 1.0.2 [22 Jan 2015]
508
509   * Suite B support for TLS 1.2 and DTLS 1.2
510   * Support for DTLS 1.2
511   * TLS automatic EC curve selection.
512   * API to set TLS supported signature algorithms and curves
513   * SSL_CONF configuration API.
514   * TLS Brainpool support.
515   * ALPN support.
516   * CMS support for RSA-PSS, RSA-OAEP, ECDH and X9.42 DH.
517
518 OpenSSL 1.0.1
519 -------------
520
521 ### Major changes between OpenSSL 1.0.1t and OpenSSL 1.0.1u [22 Sep 2016]
522
523   * OCSP Status Request extension unbounded memory growth ([CVE-2016-6304])
524   * SWEET32 Mitigation ([CVE-2016-2183])
525   * OOB write in MDC2_Update() ([CVE-2016-6303])
526   * Malformed SHA512 ticket DoS ([CVE-2016-6302])
527   * OOB write in BN_bn2dec() ([CVE-2016-2182])
528   * OOB read in TS_OBJ_print_bio() ([CVE-2016-2180])
529   * Pointer arithmetic undefined behaviour ([CVE-2016-2177])
530   * Constant time flag not preserved in DSA signing ([CVE-2016-2178])
531   * DTLS buffered message DoS ([CVE-2016-2179])
532   * DTLS replay protection DoS ([CVE-2016-2181])
533   * Certificate message OOB reads ([CVE-2016-6306])
534
535 ### Major changes between OpenSSL 1.0.1s and OpenSSL 1.0.1t [3 May 2016]
536
537   * Prevent padding oracle in AES-NI CBC MAC check ([CVE-2016-2107])
538   * Fix EVP_EncodeUpdate overflow ([CVE-2016-2105])
539   * Fix EVP_EncryptUpdate overflow ([CVE-2016-2106])
540   * Prevent ASN.1 BIO excessive memory allocation ([CVE-2016-2109])
541   * EBCDIC overread ([CVE-2016-2176])
542   * Modify behavior of ALPN to invoke callback after SNI/servername
543     callback, such that updates to the SSL_CTX affect ALPN.
544   * Remove LOW from the DEFAULT cipher list.  This removes singles DES from
545     the default.
546   * Only remove the SSLv2 methods with the no-ssl2-method option.
547
548 ### Major changes between OpenSSL 1.0.1r and OpenSSL 1.0.1s [1 Mar 2016]
549
550   * Disable weak ciphers in SSLv3 and up in default builds of OpenSSL.
551   * Disable SSLv2 default build, default negotiation and weak ciphers
552     ([CVE-2016-0800])
553   * Fix a double-free in DSA code ([CVE-2016-0705])
554   * Disable SRP fake user seed to address a server memory leak
555     ([CVE-2016-0798])
556   * Fix BN_hex2bn/BN_dec2bn NULL pointer deref/heap corruption
557     ([CVE-2016-0797])
558   * Fix memory issues in BIO_*printf functions ([CVE-2016-0799])
559   * Fix side channel attack on modular exponentiation ([CVE-2016-0702])
560
561 ### Major changes between OpenSSL 1.0.1q and OpenSSL 1.0.1r [28 Jan 2016]
562
563   * Protection for DH small subgroup attacks
564   * SSLv2 doesn't block disabled ciphers ([CVE-2015-3197])
565
566 ### Major changes between OpenSSL 1.0.1p and OpenSSL 1.0.1q [3 Dec 2015]
567
568   * Certificate verify crash with missing PSS parameter ([CVE-2015-3194])
569   * X509_ATTRIBUTE memory leak ([CVE-2015-3195])
570   * Rewrite EVP_DecodeUpdate (base64 decoding) to fix several bugs
571   * In DSA_generate_parameters_ex, if the provided seed is too short,
572     return an error
573
574 ### Major changes between OpenSSL 1.0.1o and OpenSSL 1.0.1p [9 Jul 2015]
575
576   * Alternate chains certificate forgery ([CVE-2015-1793])
577   * Race condition handling PSK identify hint ([CVE-2015-3196])
578
579 ### Major changes between OpenSSL 1.0.1n and OpenSSL 1.0.1o [12 Jun 2015]
580
581   * Fix HMAC ABI incompatibility
582
583 ### Major changes between OpenSSL 1.0.1m and OpenSSL 1.0.1n [11 Jun 2015]
584
585   * Malformed ECParameters causes infinite loop ([CVE-2015-1788])
586   * Exploitable out-of-bounds read in X509_cmp_time ([CVE-2015-1789])
587   * PKCS7 crash with missing EnvelopedContent ([CVE-2015-1790])
588   * CMS verify infinite loop with unknown hash function ([CVE-2015-1792])
589   * Race condition handling NewSessionTicket ([CVE-2015-1791])
590
591 ### Major changes between OpenSSL 1.0.1l and OpenSSL 1.0.1m [19 Mar 2015]
592
593   * Segmentation fault in ASN1_TYPE_cmp fix ([CVE-2015-0286])
594   * ASN.1 structure reuse memory corruption fix ([CVE-2015-0287])
595   * PKCS7 NULL pointer dereferences fix ([CVE-2015-0289])
596   * DoS via reachable assert in SSLv2 servers fix ([CVE-2015-0293])
597   * Use After Free following d2i_ECPrivatekey error fix ([CVE-2015-0209])
598   * X509_to_X509_REQ NULL pointer deref fix ([CVE-2015-0288])
599   * Removed the export ciphers from the DEFAULT ciphers
600
601 ### Major changes between OpenSSL 1.0.1k and OpenSSL 1.0.1l [15 Jan 2015]
602
603   * Build fixes for the Windows and OpenVMS platforms
604
605 ### Major changes between OpenSSL 1.0.1j and OpenSSL 1.0.1k [8 Jan 2015]
606
607   * Fix for [CVE-2014-3571]
608   * Fix for [CVE-2015-0206]
609   * Fix for [CVE-2014-3569]
610   * Fix for [CVE-2014-3572]
611   * Fix for [CVE-2015-0204]
612   * Fix for [CVE-2015-0205]
613   * Fix for [CVE-2014-8275]
614   * Fix for [CVE-2014-3570]
615
616 ### Major changes between OpenSSL 1.0.1i and OpenSSL 1.0.1j [15 Oct 2014]
617
618   * Fix for [CVE-2014-3513]
619   * Fix for [CVE-2014-3567]
620   * Mitigation for [CVE-2014-3566] (SSL protocol vulnerability)
621   * Fix for [CVE-2014-3568]
622
623 ### Major changes between OpenSSL 1.0.1h and OpenSSL 1.0.1i [6 Aug 2014]
624
625   * Fix for [CVE-2014-3512]
626   * Fix for [CVE-2014-3511]
627   * Fix for [CVE-2014-3510]
628   * Fix for [CVE-2014-3507]
629   * Fix for [CVE-2014-3506]
630   * Fix for [CVE-2014-3505]
631   * Fix for [CVE-2014-3509]
632   * Fix for [CVE-2014-5139]
633   * Fix for [CVE-2014-3508]
634
635 ### Major changes between OpenSSL 1.0.1g and OpenSSL 1.0.1h [5 Jun 2014]
636
637   * Fix for [CVE-2014-0224]
638   * Fix for [CVE-2014-0221]
639   * Fix for [CVE-2014-0198]
640   * Fix for [CVE-2014-0195]
641   * Fix for [CVE-2014-3470]
642   * Fix for [CVE-2010-5298]
643
644 ### Major changes between OpenSSL 1.0.1f and OpenSSL 1.0.1g [7 Apr 2014]
645
646   * Fix for [CVE-2014-0160]
647   * Add TLS padding extension workaround for broken servers.
648   * Fix for [CVE-2014-0076]
649
650 ### Major changes between OpenSSL 1.0.1e and OpenSSL 1.0.1f [6 Jan 2014]
651
652   * Don't include gmt_unix_time in TLS server and client random values
653   * Fix for TLS record tampering bug ([CVE-2013-4353])
654   * Fix for TLS version checking bug ([CVE-2013-6449])
655   * Fix for DTLS retransmission bug ([CVE-2013-6450])
656
657 ### Major changes between OpenSSL 1.0.1d and OpenSSL 1.0.1e [11 Feb 2013]
658
659   * Corrected fix for ([CVE-2013-0169])
660
661 ### Major changes between OpenSSL 1.0.1c and OpenSSL 1.0.1d [4 Feb 2013]
662
663   * Fix renegotiation in TLS 1.1, 1.2 by using the correct TLS version.
664   * Include the fips configuration module.
665   * Fix OCSP bad key DoS attack ([CVE-2013-0166])
666   * Fix for SSL/TLS/DTLS CBC plaintext recovery attack ([CVE-2013-0169])
667   * Fix for TLS AESNI record handling flaw ([CVE-2012-2686])
668
669 ### Major changes between OpenSSL 1.0.1b and OpenSSL 1.0.1c [10 May 2012]
670
671   * Fix TLS/DTLS record length checking bug ([CVE-2012-2333])
672   * Don't attempt to use non-FIPS composite ciphers in FIPS mode.
673
674 ### Major changes between OpenSSL 1.0.1a and OpenSSL 1.0.1b [26 Apr 2012]
675
676   * Fix compilation error on non-x86 platforms.
677   * Make FIPS capable OpenSSL ciphers work in non-FIPS mode.
678   * Fix SSL_OP_NO_TLSv1_1 clash with SSL_OP_ALL in OpenSSL 1.0.0
679
680 ### Major changes between OpenSSL 1.0.1 and OpenSSL 1.0.1a [19 Apr 2012]
681
682   * Fix for ASN1 overflow bug ([CVE-2012-2110])
683   * Workarounds for some servers that hang on long client hellos.
684   * Fix SEGV in AES code.
685
686 ### Major changes between OpenSSL 1.0.0h and OpenSSL 1.0.1 [14 Mar 2012]
687
688   * TLS/DTLS heartbeat support.
689   * SCTP support.
690   * RFC 5705 TLS key material exporter.
691   * RFC 5764 DTLS-SRTP negotiation.
692   * Next Protocol Negotiation.
693   * PSS signatures in certificates, requests and CRLs.
694   * Support for password based recipient info for CMS.
695   * Support TLS v1.2 and TLS v1.1.
696   * Preliminary FIPS capability for unvalidated 2.0 FIPS module.
697   * SRP support.
698
699 OpenSSL 1.0.0
700 -------------
701
702 ### Major changes between OpenSSL 1.0.0s and OpenSSL 1.0.0t [3 Dec 2015]
703
704   * X509_ATTRIBUTE memory leak (([CVE-2015-3195]))
705   * Race condition handling PSK identify hint ([CVE-2015-3196])
706
707 ### Major changes between OpenSSL 1.0.0r and OpenSSL 1.0.0s [11 Jun 2015]
708
709   * Malformed ECParameters causes infinite loop ([CVE-2015-1788])
710   * Exploitable out-of-bounds read in X509_cmp_time ([CVE-2015-1789])
711   * PKCS7 crash with missing EnvelopedContent ([CVE-2015-1790])
712   * CMS verify infinite loop with unknown hash function ([CVE-2015-1792])
713   * Race condition handling NewSessionTicket ([CVE-2015-1791])
714
715 ### Major changes between OpenSSL 1.0.0q and OpenSSL 1.0.0r [19 Mar 2015]
716
717   * Segmentation fault in ASN1_TYPE_cmp fix ([CVE-2015-0286])
718   * ASN.1 structure reuse memory corruption fix ([CVE-2015-0287])
719   * PKCS7 NULL pointer dereferences fix ([CVE-2015-0289])
720   * DoS via reachable assert in SSLv2 servers fix ([CVE-2015-0293])
721   * Use After Free following d2i_ECPrivatekey error fix ([CVE-2015-0209])
722   * X509_to_X509_REQ NULL pointer deref fix ([CVE-2015-0288])
723   * Removed the export ciphers from the DEFAULT ciphers
724
725 ### Major changes between OpenSSL 1.0.0p and OpenSSL 1.0.0q [15 Jan 2015]
726
727   * Build fixes for the Windows and OpenVMS platforms
728
729 ### Major changes between OpenSSL 1.0.0o and OpenSSL 1.0.0p [8 Jan 2015]
730
731   * Fix for [CVE-2014-3571]
732   * Fix for [CVE-2015-0206]
733   * Fix for [CVE-2014-3569]
734   * Fix for [CVE-2014-3572]
735   * Fix for [CVE-2015-0204]
736   * Fix for [CVE-2015-0205]
737   * Fix for [CVE-2014-8275]
738   * Fix for [CVE-2014-3570]
739
740 ### Major changes between OpenSSL 1.0.0n and OpenSSL 1.0.0o [15 Oct 2014]
741
742   * Fix for [CVE-2014-3513]
743   * Fix for [CVE-2014-3567]
744   * Mitigation for [CVE-2014-3566] (SSL protocol vulnerability)
745   * Fix for [CVE-2014-3568]
746
747 ### Major changes between OpenSSL 1.0.0m and OpenSSL 1.0.0n [6 Aug 2014]
748
749   * Fix for [CVE-2014-3510]
750   * Fix for [CVE-2014-3507]
751   * Fix for [CVE-2014-3506]
752   * Fix for [CVE-2014-3505]
753   * Fix for [CVE-2014-3509]
754   * Fix for [CVE-2014-3508]
755
756   Known issues in OpenSSL 1.0.0m:
757
758   * EAP-FAST and other applications using tls_session_secret_cb
759     won't resume sessions. Fixed in 1.0.0n-dev
760   * Compilation failure of s3_pkt.c on some platforms due to missing
761     `<limits.h>` include. Fixed in 1.0.0n-dev
762
763 ### Major changes between OpenSSL 1.0.0l and OpenSSL 1.0.0m [5 Jun 2014]
764
765   * Fix for [CVE-2014-0224]
766   * Fix for [CVE-2014-0221]
767   * Fix for [CVE-2014-0198]
768   * Fix for [CVE-2014-0195]
769   * Fix for [CVE-2014-3470]
770   * Fix for [CVE-2014-0076]
771   * Fix for [CVE-2010-5298]
772
773 ### Major changes between OpenSSL 1.0.0k and OpenSSL 1.0.0l [6 Jan 2014]
774
775   * Fix for DTLS retransmission bug ([CVE-2013-6450])
776
777 ### Major changes between OpenSSL 1.0.0j and OpenSSL 1.0.0k [5 Feb 2013]
778
779   * Fix for SSL/TLS/DTLS CBC plaintext recovery attack ([CVE-2013-0169])
780   * Fix OCSP bad key DoS attack ([CVE-2013-0166])
781
782 ### Major changes between OpenSSL 1.0.0i and OpenSSL 1.0.0j [10 May 2012]
783
784   * Fix DTLS record length checking bug ([CVE-2012-2333])
785
786 ### Major changes between OpenSSL 1.0.0h and OpenSSL 1.0.0i [19 Apr 2012]
787
788   * Fix for ASN1 overflow bug ([CVE-2012-2110])
789
790 ### Major changes between OpenSSL 1.0.0g and OpenSSL 1.0.0h [12 Mar 2012]
791
792   * Fix for CMS/PKCS#7 MMA ([CVE-2012-0884])
793   * Corrected fix for ([CVE-2011-4619])
794   * Various DTLS fixes.
795
796 ### Major changes between OpenSSL 1.0.0f and OpenSSL 1.0.0g [18 Jan 2012]
797
798   * Fix for DTLS DoS issue ([CVE-2012-0050])
799
800 ### Major changes between OpenSSL 1.0.0e and OpenSSL 1.0.0f [4 Jan 2012]
801
802   * Fix for DTLS plaintext recovery attack ([CVE-2011-4108])
803   * Clear block padding bytes of SSL 3.0 records ([CVE-2011-4576])
804   * Only allow one SGC handshake restart for SSL/TLS ([CVE-2011-4619])
805   * Check parameters are not NULL in GOST ENGINE ([CVE-2012-0027])
806   * Check for malformed RFC3779 data ([CVE-2011-4577])
807
808 ### Major changes between OpenSSL 1.0.0d and OpenSSL 1.0.0e [6 Sep 2011]
809
810   * Fix for CRL vulnerability issue ([CVE-2011-3207])
811   * Fix for ECDH crashes ([CVE-2011-3210])
812   * Protection against EC timing attacks.
813   * Support ECDH ciphersuites for certificates using SHA2 algorithms.
814   * Various DTLS fixes.
815
816 ### Major changes between OpenSSL 1.0.0c and OpenSSL 1.0.0d [8 Feb 2011]
817
818   * Fix for security issue ([CVE-2011-0014])
819
820 ### Major changes between OpenSSL 1.0.0b and OpenSSL 1.0.0c [2 Dec 2010]
821
822   * Fix for security issue ([CVE-2010-4180])
823   * Fix for ([CVE-2010-4252])
824   * Fix mishandling of absent EC point format extension.
825   * Fix various platform compilation issues.
826   * Corrected fix for security issue ([CVE-2010-3864]).
827
828 ### Major changes between OpenSSL 1.0.0a and OpenSSL 1.0.0b [16 Nov 2010]
829
830   * Fix for security issue ([CVE-2010-3864]).
831   * Fix for ([CVE-2010-2939])
832   * Fix WIN32 build system for GOST ENGINE.
833
834 ### Major changes between OpenSSL 1.0.0 and OpenSSL 1.0.0a [1 Jun 2010]
835
836   * Fix for security issue ([CVE-2010-1633]).
837   * GOST MAC and CFB fixes.
838
839 ### Major changes between OpenSSL 0.9.8n and OpenSSL 1.0.0 [29 Mar 2010]
840
841   * RFC3280 path validation: sufficient to process PKITS tests.
842   * Integrated support for PVK files and keyblobs.
843   * Change default private key format to PKCS#8.
844   * CMS support: able to process all examples in RFC4134
845   * Streaming ASN1 encode support for PKCS#7 and CMS.
846   * Multiple signer and signer add support for PKCS#7 and CMS.
847   * ASN1 printing support.
848   * Whirlpool hash algorithm added.
849   * RFC3161 time stamp support.
850   * New generalised public key API supporting ENGINE based algorithms.
851   * New generalised public key API utilities.
852   * New ENGINE supporting GOST algorithms.
853   * SSL/TLS GOST ciphersuite support.
854   * PKCS#7 and CMS GOST support.
855   * RFC4279 PSK ciphersuite support.
856   * Supported points format extension for ECC ciphersuites.
857   * ecdsa-with-SHA224/256/384/512 signature types.
858   * dsa-with-SHA224 and dsa-with-SHA256 signature types.
859   * Opaque PRF Input TLS extension support.
860   * Updated time routines to avoid OS limitations.
861
862 OpenSSL 0.9.x
863 -------------
864
865 ### Major changes between OpenSSL 0.9.8m and OpenSSL 0.9.8n [24 Mar 2010]
866
867   * CFB cipher definition fixes.
868   * Fix security issues [CVE-2010-0740] and [CVE-2010-0433].
869
870 ### Major changes between OpenSSL 0.9.8l and OpenSSL 0.9.8m [25 Feb 2010]
871
872   * Cipher definition fixes.
873   * Workaround for slow RAND_poll() on some WIN32 versions.
874   * Remove MD2 from algorithm tables.
875   * SPKAC handling fixes.
876   * Support for RFC5746 TLS renegotiation extension.
877   * Compression memory leak fixed.
878   * Compression session resumption fixed.
879   * Ticket and SNI coexistence fixes.
880   * Many fixes to DTLS handling.
881
882 ### Major changes between OpenSSL 0.9.8k and OpenSSL 0.9.8l [5 Nov 2009]
883
884   * Temporary work around for [CVE-2009-3555]: disable renegotiation.
885
886 ### Major changes between OpenSSL 0.9.8j and OpenSSL 0.9.8k [25 Mar 2009]
887
888   * Fix various build issues.
889   * Fix security issues [CVE-2009-0590], [CVE-2009-0591], [CVE-2009-0789]
890
891 ### Major changes between OpenSSL 0.9.8i and OpenSSL 0.9.8j [7 Jan 2009]
892
893   * Fix security issue ([CVE-2008-5077])
894   * Merge FIPS 140-2 branch code.
895
896 ### Major changes between OpenSSL 0.9.8g and OpenSSL 0.9.8h [28 May 2008]
897
898   * CryptoAPI ENGINE support.
899   * Various precautionary measures.
900   * Fix for bugs affecting certificate request creation.
901   * Support for local machine keyset attribute in PKCS#12 files.
902
903 ### Major changes between OpenSSL 0.9.8f and OpenSSL 0.9.8g [19 Oct 2007]
904
905   * Backport of CMS functionality to 0.9.8.
906   * Fixes for bugs introduced with 0.9.8f.
907
908 ### Major changes between OpenSSL 0.9.8e and OpenSSL 0.9.8f [11 Oct 2007]
909
910   * Add gcc 4.2 support.
911   * Add support for AES and SSE2 assembly language optimization
912     for VC++ build.
913   * Support for RFC4507bis and server name extensions if explicitly
914     selected at compile time.
915   * DTLS improvements.
916   * RFC4507bis support.
917   * TLS Extensions support.
918
919 ### Major changes between OpenSSL 0.9.8d and OpenSSL 0.9.8e [23 Feb 2007]
920
921   * Various ciphersuite selection fixes.
922   * RFC3779 support.
923
924 ### Major changes between OpenSSL 0.9.8c and OpenSSL 0.9.8d [28 Sep 2006]
925
926   * Introduce limits to prevent malicious key DoS  ([CVE-2006-2940])
927   * Fix security issues [CVE-2006-2937], [CVE-2006-3737], [CVE-2006-4343]
928   * Changes to ciphersuite selection algorithm
929
930 ### Major changes between OpenSSL 0.9.8b and OpenSSL 0.9.8c [5 Sep 2006]
931
932   * Fix Daniel Bleichenbacher forged signature attack, [CVE-2006-4339]
933   * New cipher Camellia
934
935 ### Major changes between OpenSSL 0.9.8a and OpenSSL 0.9.8b [4 May 2006]
936
937   * Cipher string fixes.
938   * Fixes for VC++ 2005.
939   * Updated ECC cipher suite support.
940   * New functions EVP_CIPHER_CTX_new() and EVP_CIPHER_CTX_free().
941   * Zlib compression usage fixes.
942   * Built in dynamic engine compilation support on Win32.
943   * Fixes auto dynamic engine loading in Win32.
944
945 ### Major changes between OpenSSL 0.9.8 and OpenSSL 0.9.8a [11 Oct 2005]
946
947   * Fix potential SSL 2.0 rollback ([CVE-2005-2969])
948   * Extended Windows CE support
949
950 ### Major changes between OpenSSL 0.9.7g and OpenSSL 0.9.8 [5 Jul 2005]
951
952   * Major work on the BIGNUM library for higher efficiency and to
953     make operations more streamlined and less contradictory.  This
954     is the result of a major audit of the BIGNUM library.
955   * Addition of BIGNUM functions for fields GF(2^m) and NIST
956     curves, to support the Elliptic Crypto functions.
957   * Major work on Elliptic Crypto; ECDH and ECDSA added, including
958     the use through EVP, X509 and ENGINE.
959   * New ASN.1 mini-compiler that's usable through the OpenSSL
960     configuration file.
961   * Added support for ASN.1 indefinite length constructed encoding.
962   * New PKCS#12 'medium level' API to manipulate PKCS#12 files.
963   * Complete rework of shared library construction and linking
964     programs with shared or static libraries, through a separate
965     Makefile.shared.
966   * Rework of the passing of parameters from one Makefile to another.
967   * Changed ENGINE framework to load dynamic engine modules
968     automatically from specifically given directories.
969   * New structure and ASN.1 functions for CertificatePair.
970   * Changed the ZLIB compression method to be stateful.
971   * Changed the key-generation and primality testing "progress"
972     mechanism to take a structure that contains the ticker
973     function and an argument.
974   * New engine module: GMP (performs private key exponentiation).
975   * New engine module: VIA PadLOck ACE extension in VIA C3
976     Nehemiah processors.
977   * Added support for IPv6 addresses in certificate extensions.
978     See RFC 1884, section 2.2.
979   * Added support for certificate policy mappings, policy
980     constraints and name constraints.
981   * Added support for multi-valued AVAs in the OpenSSL
982     configuration file.
983   * Added support for multiple certificates with the same subject
984     in the 'openssl ca' index file.
985   * Make it possible to create self-signed certificates using
986     'openssl ca -selfsign'.
987   * Make it possible to generate a serial number file with
988     'openssl ca -create_serial'.
989   * New binary search functions with extended functionality.
990   * New BUF functions.
991   * New STORE structure and library to provide an interface to all
992     sorts of data repositories.  Supports storage of public and
993     private keys, certificates, CRLs, numbers and arbitrary blobs.
994     This library is unfortunately unfinished and unused within
995     OpenSSL.
996   * New control functions for the error stack.
997   * Changed the PKCS#7 library to support one-pass S/MIME
998     processing.
999   * Added the possibility to compile without old deprecated
1000     functionality with the OPENSSL_NO_DEPRECATED macro or the
1001     'no-deprecated' argument to the config and Configure scripts.
1002   * Constification of all ASN.1 conversion functions, and other
1003     affected functions.
1004   * Improved platform support for PowerPC.
1005   * New FIPS 180-2 algorithms (SHA-224, -256, -384 and -512).
1006   * New X509_VERIFY_PARAM structure to support parameterisation
1007   of X.509 path validation.
1008   * Major overhaul of RC4 performance on Intel P4, IA-64 and
1009     AMD64.
1010   * Changed the Configure script to have some algorithms disabled
1011     by default.  Those can be explicitly enabled with the new
1012     argument form 'enable-xxx'.
1013   * Change the default digest in 'openssl' commands from MD5 to
1014     SHA-1.
1015   * Added support for DTLS.
1016   * New BIGNUM blinding.
1017   * Added support for the RSA-PSS encryption scheme
1018   * Added support for the RSA X.931 padding.
1019   * Added support for BSD sockets on NetWare.
1020   * Added support for files larger than 2GB.
1021   * Added initial support for Win64.
1022   * Added alternate pkg-config files.
1023
1024 ### Major changes between OpenSSL 0.9.7l and OpenSSL 0.9.7m [23 Feb 2007]
1025
1026   * FIPS 1.1.1 module linking.
1027   * Various ciphersuite selection fixes.
1028
1029 ### Major changes between OpenSSL 0.9.7k and OpenSSL 0.9.7l [28 Sep 2006]
1030
1031   * Introduce limits to prevent malicious key DoS  ([CVE-2006-2940])
1032   * Fix security issues [CVE-2006-2937], [CVE-2006-3737], [CVE-2006-4343]
1033
1034 ### Major changes between OpenSSL 0.9.7j and OpenSSL 0.9.7k [5 Sep 2006]
1035
1036   * Fix Daniel Bleichenbacher forged signature attack, [CVE-2006-4339]
1037
1038 ### Major changes between OpenSSL 0.9.7i and OpenSSL 0.9.7j [4 May 2006]
1039
1040   * Visual C++ 2005 fixes.
1041   * Update Windows build system for FIPS.
1042
1043 ### Major changes between OpenSSL 0.9.7h and OpenSSL 0.9.7i [14 Oct 2005]
1044
1045   * Give EVP_MAX_MD_SIZE its old value, except for a FIPS build.
1046
1047 ### Major changes between OpenSSL 0.9.7g and OpenSSL 0.9.7h [11 Oct 2005]
1048
1049   * Fix SSL 2.0 Rollback ([CVE-2005-2969])
1050   * Allow use of fixed-length exponent on DSA signing
1051   * Default fixed-window RSA, DSA, DH private-key operations
1052
1053 ### Major changes between OpenSSL 0.9.7f and OpenSSL 0.9.7g [11 Apr 2005]
1054
1055   * More compilation issues fixed.
1056   * Adaptation to more modern Kerberos API.
1057   * Enhanced or corrected configuration for Solaris64, Mingw and Cygwin.
1058   * Enhanced x86_64 assembler BIGNUM module.
1059   * More constification.
1060   * Added processing of proxy certificates (RFC 3820).
1061
1062 ### Major changes between OpenSSL 0.9.7e and OpenSSL 0.9.7f [22 Mar 2005]
1063
1064   * Several compilation issues fixed.
1065   * Many memory allocation failure checks added.
1066   * Improved comparison of X509 Name type.
1067   * Mandatory basic checks on certificates.
1068   * Performance improvements.
1069
1070 ### Major changes between OpenSSL 0.9.7d and OpenSSL 0.9.7e [25 Oct 2004]
1071
1072   * Fix race condition in CRL checking code.
1073   * Fixes to PKCS#7 (S/MIME) code.
1074
1075 ### Major changes between OpenSSL 0.9.7c and OpenSSL 0.9.7d [17 Mar 2004]
1076
1077   * Security: Fix Kerberos ciphersuite SSL/TLS handshaking bug
1078   * Security: Fix null-pointer assignment in do_change_cipher_spec()
1079   * Allow multiple active certificates with same subject in CA index
1080   * Multiple X509 verification fixes
1081   * Speed up HMAC and other operations
1082
1083 ### Major changes between OpenSSL 0.9.7b and OpenSSL 0.9.7c [30 Sep 2003]
1084
1085   * Security: fix various ASN1 parsing bugs.
1086   * New -ignore_err option to OCSP utility.
1087   * Various interop and bug fixes in S/MIME code.
1088   * SSL/TLS protocol fix for unrequested client certificates.
1089
1090 ### Major changes between OpenSSL 0.9.7a and OpenSSL 0.9.7b [10 Apr 2003]
1091
1092   * Security: counter the Klima-Pokorny-Rosa extension of
1093     Bleichbacher's attack
1094   * Security: make RSA blinding default.
1095   * Configuration: Irix fixes, AIX fixes, better mingw support.
1096   * Support for new platforms: linux-ia64-ecc.
1097   * Build: shared library support fixes.
1098   * ASN.1: treat domainComponent correctly.
1099   * Documentation: fixes and additions.
1100
1101 ### Major changes between OpenSSL 0.9.7 and OpenSSL 0.9.7a [19 Feb 2003]
1102
1103   * Security: Important security related bugfixes.
1104   * Enhanced compatibility with MIT Kerberos.
1105   * Can be built without the ENGINE framework.
1106   * IA32 assembler enhancements.
1107   * Support for new platforms: FreeBSD/IA64 and FreeBSD/Sparc64.
1108   * Configuration: the no-err option now works properly.
1109   * SSL/TLS: now handles manual certificate chain building.
1110   * SSL/TLS: certain session ID malfunctions corrected.
1111
1112 ### Major changes between OpenSSL 0.9.6 and OpenSSL 0.9.7 [30 Dec 2002]
1113
1114   * New library section OCSP.
1115   * Complete rewrite of ASN1 code.
1116   * CRL checking in verify code and openssl utility.
1117   * Extension copying in 'ca' utility.
1118   * Flexible display options in 'ca' utility.
1119   * Provisional support for international characters with UTF8.
1120   * Support for external crypto devices ('engine') is no longer
1121     a separate distribution.
1122   * New elliptic curve library section.
1123   * New AES (Rijndael) library section.
1124   * Support for new platforms: Windows CE, Tandem OSS, A/UX, AIX 64-bit,
1125     Linux x86_64, Linux 64-bit on Sparc v9
1126   * Extended support for some platforms: VxWorks
1127   * Enhanced support for shared libraries.
1128   * Now only builds PIC code when shared library support is requested.
1129   * Support for pkg-config.
1130   * Lots of new manuals.
1131   * Makes symbolic links to or copies of manuals to cover all described
1132     functions.
1133   * Change DES API to clean up the namespace (some applications link also
1134     against libdes providing similar functions having the same name).
1135     Provide macros for backward compatibility (will be removed in the
1136     future).
1137   * Unify handling of cryptographic algorithms (software and engine)
1138     to be available via EVP routines for asymmetric and symmetric ciphers.
1139   * NCONF: new configuration handling routines.
1140   * Change API to use more 'const' modifiers to improve error checking
1141     and help optimizers.
1142   * Finally remove references to RSAref.
1143   * Reworked parts of the BIGNUM code.
1144   * Support for new engines: Broadcom ubsec, Accelerated Encryption
1145     Processing, IBM 4758.
1146   * A few new engines added in the demos area.
1147   * Extended and corrected OID (object identifier) table.
1148   * PRNG: query at more locations for a random device, automatic query for
1149     EGD style random sources at several locations.
1150   * SSL/TLS: allow optional cipher choice according to server's preference.
1151   * SSL/TLS: allow server to explicitly set new session ids.
1152   * SSL/TLS: support Kerberos cipher suites (RFC2712).
1153     Only supports MIT Kerberos for now.
1154   * SSL/TLS: allow more precise control of renegotiations and sessions.
1155   * SSL/TLS: add callback to retrieve SSL/TLS messages.
1156   * SSL/TLS: support AES cipher suites (RFC3268).
1157
1158 ### Major changes between OpenSSL 0.9.6j and OpenSSL 0.9.6k [30 Sep 2003]
1159
1160   * Security: fix various ASN1 parsing bugs.
1161   * SSL/TLS protocol fix for unrequested client certificates.
1162
1163 ### Major changes between OpenSSL 0.9.6i and OpenSSL 0.9.6j [10 Apr 2003]
1164
1165   * Security: counter the Klima-Pokorny-Rosa extension of
1166     Bleichbacher's attack
1167   * Security: make RSA blinding default.
1168   * Build: shared library support fixes.
1169
1170 ### Major changes between OpenSSL 0.9.6h and OpenSSL 0.9.6i [19 Feb 2003]
1171
1172   * Important security related bugfixes.
1173
1174 ### Major changes between OpenSSL 0.9.6g and OpenSSL 0.9.6h [5 Dec 2002]
1175
1176   * New configuration targets for Tandem OSS and A/UX.
1177   * New OIDs for Microsoft attributes.
1178   * Better handling of SSL session caching.
1179   * Better comparison of distinguished names.
1180   * Better handling of shared libraries in a mixed GNU/non-GNU environment.
1181   * Support assembler code with Borland C.
1182   * Fixes for length problems.
1183   * Fixes for uninitialised variables.
1184   * Fixes for memory leaks, some unusual crashes and some race conditions.
1185   * Fixes for smaller building problems.
1186   * Updates of manuals, FAQ and other instructive documents.
1187
1188 ### Major changes between OpenSSL 0.9.6f and OpenSSL 0.9.6g [9 Aug 2002]
1189
1190   * Important building fixes on Unix.
1191
1192 ### Major changes between OpenSSL 0.9.6e and OpenSSL 0.9.6f [8 Aug 2002]
1193
1194   * Various important bugfixes.
1195
1196 ### Major changes between OpenSSL 0.9.6d and OpenSSL 0.9.6e [30 Jul 2002]
1197
1198   * Important security related bugfixes.
1199   * Various SSL/TLS library bugfixes.
1200
1201 ### Major changes between OpenSSL 0.9.6c and OpenSSL 0.9.6d [9 May 2002]
1202
1203   * Various SSL/TLS library bugfixes.
1204   * Fix DH parameter generation for 'non-standard' generators.
1205
1206 ### Major changes between OpenSSL 0.9.6b and OpenSSL 0.9.6c [21 Dec 2001]
1207
1208   * Various SSL/TLS library bugfixes.
1209   * BIGNUM library fixes.
1210   * RSA OAEP and random number generation fixes.
1211   * Object identifiers corrected and added.
1212   * Add assembler BN routines for IA64.
1213   * Add support for OS/390 Unix, UnixWare with gcc, OpenUNIX 8,
1214     MIPS Linux; shared library support for Irix, HP-UX.
1215   * Add crypto accelerator support for AEP, Baltimore SureWare,
1216     Broadcom and Cryptographic Appliance's keyserver
1217     [in 0.9.6c-engine release].
1218
1219 ### Major changes between OpenSSL 0.9.6a and OpenSSL 0.9.6b [9 Jul 2001]
1220
1221   * Security fix: PRNG improvements.
1222   * Security fix: RSA OAEP check.
1223   * Security fix: Reinsert and fix countermeasure to Bleichbacher's
1224     attack.
1225   * MIPS bug fix in BIGNUM.
1226   * Bug fix in "openssl enc".
1227   * Bug fix in X.509 printing routine.
1228   * Bug fix in DSA verification routine and DSA S/MIME verification.
1229   * Bug fix to make PRNG thread-safe.
1230   * Bug fix in RAND_file_name().
1231   * Bug fix in compatibility mode trust settings.
1232   * Bug fix in blowfish EVP.
1233   * Increase default size for BIO buffering filter.
1234   * Compatibility fixes in some scripts.
1235
1236 ### Major changes between OpenSSL 0.9.6 and OpenSSL 0.9.6a [5 Apr 2001]
1237
1238   * Security fix: change behavior of OpenSSL to avoid using
1239     environment variables when running as root.
1240   * Security fix: check the result of RSA-CRT to reduce the
1241     possibility of deducing the private key from an incorrectly
1242     calculated signature.
1243   * Security fix: prevent Bleichenbacher's DSA attack.
1244   * Security fix: Zero the premaster secret after deriving the
1245     master secret in DH ciphersuites.
1246   * Reimplement SSL_peek(), which had various problems.
1247   * Compatibility fix: the function des_encrypt() renamed to
1248     des_encrypt1() to avoid clashes with some Unixen libc.
1249   * Bug fixes for Win32, HP/UX and Irix.
1250   * Bug fixes in BIGNUM, SSL, PKCS#7, PKCS#12, X.509, CONF and
1251     memory checking routines.
1252   * Bug fixes for RSA operations in threaded environments.
1253   * Bug fixes in misc. openssl applications.
1254   * Remove a few potential memory leaks.
1255   * Add tighter checks of BIGNUM routines.
1256   * Shared library support has been reworked for generality.
1257   * More documentation.
1258   * New function BN_rand_range().
1259   * Add "-rand" option to openssl s_client and s_server.
1260
1261 ### Major changes between OpenSSL 0.9.5a and OpenSSL 0.9.6 [10 Oct 2000]
1262
1263   * Some documentation for BIO and SSL libraries.
1264   * Enhanced chain verification using key identifiers.
1265   * New sign and verify options to 'dgst' application.
1266   * Support for DER and PEM encoded messages in 'smime' application.
1267   * New 'rsautl' application, low-level RSA utility.
1268   * MD4 now included.
1269   * Bugfix for SSL rollback padding check.
1270   * Support for external crypto devices [1].
1271   * Enhanced EVP interface.
1272
1273   [1] The support for external crypto devices is currently a separate
1274       distribution.  See the file README-Engine.md.
1275
1276 ### Major changes between OpenSSL 0.9.5 and OpenSSL 0.9.5a [1 Apr 2000]
1277
1278   * Bug fixes for Win32, SuSE Linux, NeXTSTEP and FreeBSD 2.2.8
1279   * Shared library support for HPUX and Solaris-gcc
1280   * Support of Linux/IA64
1281   * Assembler support for Mingw32
1282   * New 'rand' application
1283   * New way to check for existence of algorithms from scripts
1284
1285 ### Major changes between OpenSSL 0.9.4 and OpenSSL 0.9.5 [25 May 2000]
1286
1287   * S/MIME support in new 'smime' command
1288   * Documentation for the OpenSSL command line application
1289   * Automation of 'req' application
1290   * Fixes to make s_client, s_server work under Windows
1291   * Support for multiple fieldnames in SPKACs
1292   * New SPKAC command line utility and associated library functions
1293   * Options to allow passwords to be obtained from various sources
1294   * New public key PEM format and options to handle it
1295   * Many other fixes and enhancements to command line utilities
1296   * Usable certificate chain verification
1297   * Certificate purpose checking
1298   * Certificate trust settings
1299   * Support of authority information access extension
1300   * Extensions in certificate requests
1301   * Simplified X509 name and attribute routines
1302   * Initial (incomplete) support for international character sets
1303   * New DH_METHOD, DSA_METHOD and enhanced RSA_METHOD
1304   * Read only memory BIOs and simplified creation function
1305   * TLS/SSL protocol bugfixes: Accept TLS 'client hello' in SSL 3.0
1306     record; allow fragmentation and interleaving of handshake and other
1307     data
1308   * TLS/SSL code now "tolerates" MS SGC
1309   * Work around for Netscape client certificate hang bug
1310   * RSA_NULL option that removes RSA patent code but keeps other
1311     RSA functionality
1312   * Memory leak detection now allows applications to add extra information
1313     via a per-thread stack
1314   * PRNG robustness improved
1315   * EGD support
1316   * BIGNUM library bug fixes
1317   * Faster DSA parameter generation
1318   * Enhanced support for Alpha Linux
1319   * Experimental macOS support
1320
1321 ### Major changes between OpenSSL 0.9.3 and OpenSSL 0.9.4 [9 Aug 1999]
1322
1323   * Transparent support for PKCS#8 format private keys: these are used
1324     by several software packages and are more secure than the standard
1325     form
1326   * PKCS#5 v2.0 implementation
1327   * Password callbacks have a new void * argument for application data
1328   * Avoid various memory leaks
1329   * New pipe-like BIO that allows using the SSL library when actual I/O
1330     must be handled by the application (BIO pair)
1331
1332 ### Major changes between OpenSSL 0.9.2b and OpenSSL 0.9.3 [24 May 1999]
1333
1334   * Lots of enhancements and cleanups to the Configuration mechanism
1335   * RSA OEAP related fixes
1336   * Added "openssl ca -revoke" option for revoking a certificate
1337   * Source cleanups: const correctness, type-safe stacks and ASN.1 SETs
1338   * Source tree cleanups: removed lots of obsolete files
1339   * Thawte SXNet, certificate policies and CRL distribution points
1340     extension support
1341   * Preliminary (experimental) S/MIME support
1342   * Support for ASN.1 UTF8String and VisibleString
1343   * Full integration of PKCS#12 code
1344   * Sparc assembler bignum implementation, optimized hash functions
1345   * Option to disable selected ciphers
1346
1347 ### Major changes between OpenSSL 0.9.1c and OpenSSL 0.9.2b [22 Mar 1999]
1348
1349   * Fixed a security hole related to session resumption
1350   * Fixed RSA encryption routines for the p < q case
1351   * "ALL" in cipher lists now means "everything except NULL ciphers"
1352   * Support for Triple-DES CBCM cipher
1353   * Support of Optimal Asymmetric Encryption Padding (OAEP) for RSA
1354   * First support for new TLSv1 ciphers
1355   * Added a few new BIOs (syslog BIO, reliable BIO)
1356   * Extended support for DSA certificate/keys.
1357   * Extended support for Certificate Signing Requests (CSR)
1358   * Initial support for X.509v3 extensions
1359   * Extended support for compression inside the SSL record layer
1360   * Overhauled Win32 builds
1361   * Cleanups and fixes to the Big Number (BN) library
1362   * Support for ASN.1 GeneralizedTime
1363   * Splitted ASN.1 SETs from SEQUENCEs
1364   * ASN1 and PEM support for Netscape Certificate Sequences
1365   * Overhauled Perl interface
1366   * Lots of source tree cleanups.
1367   * Lots of memory leak fixes.
1368   * Lots of bug fixes.
1369
1370 ### Major changes between SSLeay 0.9.0b and OpenSSL 0.9.1c [23 Dec 1998]
1371
1372   * Integration of the popular NO_RSA/NO_DSA patches
1373   * Initial support for compression inside the SSL record layer
1374   * Added BIO proxy and filtering functionality
1375   * Extended Big Number (BN) library
1376   * Added RIPE MD160 message digest
1377   * Added support for RC2/64bit cipher
1378   * Extended ASN.1 parser routines
1379   * Adjustments of the source tree for CVS
1380   * Support for various new platforms
1381
1382 <!-- Links -->
1383
1384 [CVE-2020-1971]: https://www.openssl.org/news/vulnerabilities.html#CVE-2020-1971
1385 [CVE-2020-1967]: https://www.openssl.org/news/vulnerabilities.html#CVE-2020-1967
1386 [CVE-2019-1563]: https://www.openssl.org/news/vulnerabilities.html#CVE-2019-1563
1387 [CVE-2019-1559]: https://www.openssl.org/news/vulnerabilities.html#CVE-2019-1559
1388 [CVE-2019-1552]: https://www.openssl.org/news/vulnerabilities.html#CVE-2019-1552
1389 [CVE-2019-1551]: https://www.openssl.org/news/vulnerabilities.html#CVE-2019-1551
1390 [CVE-2019-1549]: https://www.openssl.org/news/vulnerabilities.html#CVE-2019-1549
1391 [CVE-2019-1547]: https://www.openssl.org/news/vulnerabilities.html#CVE-2019-1547
1392 [CVE-2019-1543]: https://www.openssl.org/news/vulnerabilities.html#CVE-2019-1543
1393 [CVE-2018-5407]: https://www.openssl.org/news/vulnerabilities.html#CVE-2018-5407
1394 [CVE-2018-0739]: https://www.openssl.org/news/vulnerabilities.html#CVE-2018-0739
1395 [CVE-2018-0737]: https://www.openssl.org/news/vulnerabilities.html#CVE-2018-0737
1396 [CVE-2018-0735]: https://www.openssl.org/news/vulnerabilities.html#CVE-2018-0735
1397 [CVE-2018-0734]: https://www.openssl.org/news/vulnerabilities.html#CVE-2018-0734
1398 [CVE-2018-0733]: https://www.openssl.org/news/vulnerabilities.html#CVE-2018-0733
1399 [CVE-2018-0732]: https://www.openssl.org/news/vulnerabilities.html#CVE-2018-0732
1400 [CVE-2017-3738]: https://www.openssl.org/news/vulnerabilities.html#CVE-2017-3738
1401 [CVE-2017-3737]: https://www.openssl.org/news/vulnerabilities.html#CVE-2017-3737
1402 [CVE-2017-3736]: https://www.openssl.org/news/vulnerabilities.html#CVE-2017-3736
1403 [CVE-2017-3735]: https://www.openssl.org/news/vulnerabilities.html#CVE-2017-3735
1404 [CVE-2017-3733]: https://www.openssl.org/news/vulnerabilities.html#CVE-2017-3733
1405 [CVE-2017-3732]: https://www.openssl.org/news/vulnerabilities.html#CVE-2017-3732
1406 [CVE-2017-3731]: https://www.openssl.org/news/vulnerabilities.html#CVE-2017-3731
1407 [CVE-2017-3730]: https://www.openssl.org/news/vulnerabilities.html#CVE-2017-3730
1408 [CVE-2016-7055]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-7055
1409 [CVE-2016-7054]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-7054
1410 [CVE-2016-7053]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-7053
1411 [CVE-2016-7052]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-7052
1412 [CVE-2016-6309]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-6309
1413 [CVE-2016-6308]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-6308
1414 [CVE-2016-6307]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-6307
1415 [CVE-2016-6306]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-6306
1416 [CVE-2016-6305]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-6305
1417 [CVE-2016-6304]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-6304
1418 [CVE-2016-6303]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-6303
1419 [CVE-2016-6302]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-6302
1420 [CVE-2016-2183]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-2183
1421 [CVE-2016-2182]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-2182
1422 [CVE-2016-2181]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-2181
1423 [CVE-2016-2180]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-2180
1424 [CVE-2016-2179]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-2179
1425 [CVE-2016-2178]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-2178
1426 [CVE-2016-2177]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-2177
1427 [CVE-2016-2176]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-2176
1428 [CVE-2016-2109]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-2109
1429 [CVE-2016-2107]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-2107
1430 [CVE-2016-2106]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-2106
1431 [CVE-2016-2105]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-2105
1432 [CVE-2016-0800]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-0800
1433 [CVE-2016-0799]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-0799
1434 [CVE-2016-0798]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-0798
1435 [CVE-2016-0797]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-0797
1436 [CVE-2016-0705]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-0705
1437 [CVE-2016-0702]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-0702
1438 [CVE-2016-0701]: https://www.openssl.org/news/vulnerabilities.html#CVE-2016-0701
1439 [CVE-2015-3197]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-3197
1440 [CVE-2015-3196]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-3196
1441 [CVE-2015-3195]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-3195
1442 [CVE-2015-3194]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-3194
1443 [CVE-2015-3193]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-3193
1444 [CVE-2015-1793]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-1793
1445 [CVE-2015-1792]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-1792
1446 [CVE-2015-1791]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-1791
1447 [CVE-2015-1790]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-1790
1448 [CVE-2015-1789]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-1789
1449 [CVE-2015-1788]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-1788
1450 [CVE-2015-1787]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-1787
1451 [CVE-2015-0293]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-0293
1452 [CVE-2015-0291]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-0291
1453 [CVE-2015-0290]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-0290
1454 [CVE-2015-0289]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-0289
1455 [CVE-2015-0288]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-0288
1456 [CVE-2015-0287]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-0287
1457 [CVE-2015-0286]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-0286
1458 [CVE-2015-0285]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-0285
1459 [CVE-2015-0209]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-0209
1460 [CVE-2015-0208]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-0208
1461 [CVE-2015-0207]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-0207
1462 [CVE-2015-0206]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-0206
1463 [CVE-2015-0205]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-0205
1464 [CVE-2015-0204]: https://www.openssl.org/news/vulnerabilities.html#CVE-2015-0204
1465 [CVE-2014-8275]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-8275
1466 [CVE-2014-5139]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-5139
1467 [CVE-2014-3572]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3572
1468 [CVE-2014-3571]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3571
1469 [CVE-2014-3570]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3570
1470 [CVE-2014-3569]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3569
1471 [CVE-2014-3568]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3568
1472 [CVE-2014-3567]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3567
1473 [CVE-2014-3566]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3566
1474 [CVE-2014-3513]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3513
1475 [CVE-2014-3512]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3512
1476 [CVE-2014-3511]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3511
1477 [CVE-2014-3510]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3510
1478 [CVE-2014-3509]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3509
1479 [CVE-2014-3508]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3508
1480 [CVE-2014-3507]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3507
1481 [CVE-2014-3506]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3506
1482 [CVE-2014-3505]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3505
1483 [CVE-2014-3470]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-3470
1484 [CVE-2014-0224]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-0224
1485 [CVE-2014-0221]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-0221
1486 [CVE-2014-0198]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-0198
1487 [CVE-2014-0195]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-0195
1488 [CVE-2014-0160]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-0160
1489 [CVE-2014-0076]: https://www.openssl.org/news/vulnerabilities.html#CVE-2014-0076
1490 [CVE-2013-6450]: https://www.openssl.org/news/vulnerabilities.html#CVE-2013-6450
1491 [CVE-2013-6449]: https://www.openssl.org/news/vulnerabilities.html#CVE-2013-6449
1492 [CVE-2013-4353]: https://www.openssl.org/news/vulnerabilities.html#CVE-2013-4353
1493 [CVE-2013-0169]: https://www.openssl.org/news/vulnerabilities.html#CVE-2013-0169
1494 [CVE-2013-0166]: https://www.openssl.org/news/vulnerabilities.html#CVE-2013-0166
1495 [CVE-2012-2686]: https://www.openssl.org/news/vulnerabilities.html#CVE-2012-2686
1496 [CVE-2012-2333]: https://www.openssl.org/news/vulnerabilities.html#CVE-2012-2333
1497 [CVE-2012-2110]: https://www.openssl.org/news/vulnerabilities.html#CVE-2012-2110
1498 [CVE-2012-0884]: https://www.openssl.org/news/vulnerabilities.html#CVE-2012-0884
1499 [CVE-2012-0050]: https://www.openssl.org/news/vulnerabilities.html#CVE-2012-0050
1500 [CVE-2012-0027]: https://www.openssl.org/news/vulnerabilities.html#CVE-2012-0027
1501 [CVE-2011-4619]: https://www.openssl.org/news/vulnerabilities.html#CVE-2011-4619
1502 [CVE-2011-4577]: https://www.openssl.org/news/vulnerabilities.html#CVE-2011-4577
1503 [CVE-2011-4576]: https://www.openssl.org/news/vulnerabilities.html#CVE-2011-4576
1504 [CVE-2011-4108]: https://www.openssl.org/news/vulnerabilities.html#CVE-2011-4108
1505 [CVE-2011-3210]: https://www.openssl.org/news/vulnerabilities.html#CVE-2011-3210
1506 [CVE-2011-3207]: https://www.openssl.org/news/vulnerabilities.html#CVE-2011-3207
1507 [CVE-2011-0014]: https://www.openssl.org/news/vulnerabilities.html#CVE-2011-0014
1508 [CVE-2010-5298]: https://www.openssl.org/news/vulnerabilities.html#CVE-2010-5298
1509 [CVE-2010-4252]: https://www.openssl.org/news/vulnerabilities.html#CVE-2010-4252
1510 [CVE-2010-4180]: https://www.openssl.org/news/vulnerabilities.html#CVE-2010-4180
1511 [CVE-2010-3864]: https://www.openssl.org/news/vulnerabilities.html#CVE-2010-3864
1512 [CVE-2010-2939]: https://www.openssl.org/news/vulnerabilities.html#CVE-2010-2939
1513 [CVE-2010-1633]: https://www.openssl.org/news/vulnerabilities.html#CVE-2010-1633
1514 [CVE-2010-0740]: https://www.openssl.org/news/vulnerabilities.html#CVE-2010-0740
1515 [CVE-2010-0433]: https://www.openssl.org/news/vulnerabilities.html#CVE-2010-0433
1516 [CVE-2009-3555]: https://www.openssl.org/news/vulnerabilities.html#CVE-2009-3555
1517 [CVE-2009-0789]: https://www.openssl.org/news/vulnerabilities.html#CVE-2009-0789
1518 [CVE-2009-0591]: https://www.openssl.org/news/vulnerabilities.html#CVE-2009-0591
1519 [CVE-2009-0590]: https://www.openssl.org/news/vulnerabilities.html#CVE-2009-0590
1520 [CVE-2008-5077]: https://www.openssl.org/news/vulnerabilities.html#CVE-2008-5077
1521 [CVE-2006-4343]: https://www.openssl.org/news/vulnerabilities.html#CVE-2006-4343
1522 [CVE-2006-4339]: https://www.openssl.org/news/vulnerabilities.html#CVE-2006-4339
1523 [CVE-2006-3737]: https://www.openssl.org/news/vulnerabilities.html#CVE-2006-3737
1524 [CVE-2006-2940]: https://www.openssl.org/news/vulnerabilities.html#CVE-2006-2940
1525 [CVE-2006-2937]: https://www.openssl.org/news/vulnerabilities.html#CVE-2006-2937
1526 [CVE-2005-2969]: https://www.openssl.org/news/vulnerabilities.html#CVE-2005-2969