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