VirtualBox

source: vbox/trunk/src/libs/openssl-3.3.1/NEWS.md@ 105963

Last change on this file since 105963 was 105918, checked in by vboxsync, 7 months ago

openssl-3.3.1: Applied and adjusted our OpenSSL changes to 3.1.5. bugref:10757

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

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette