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