| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent dd95d07 commit 71c4d75
383 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -7,6 +7,44 @@ | |||
| 7 | 7 | https://github.com/openssl/openssl/commits/ and pick the appropriate | |
| 8 | 8 | release branch. | |
| 9 | 9 | ||
| 10 | + Changes between 1.1.1a and 1.1.1b [26 Feb 2019] | ||
| 11 | + | ||
| 12 | + *) Added SCA hardening for modular field inversion in EC_GROUP through | ||
| 13 | + a new dedicated field_inv() pointer in EC_METHOD. | ||
| 14 | + This also addresses a leakage affecting conversions from projective | ||
| 15 | + to affine coordinates. | ||
| 16 | + [Billy Bob Brumley, Nicola Tuveri] | ||
| 17 | + | ||
| 18 | + *) Change the info callback signals for the start and end of a post-handshake | ||
| 19 | + message exchange in TLSv1.3. In 1.1.1/1.1.1a we used SSL_CB_HANDSHAKE_START | ||
| 20 | + and SSL_CB_HANDSHAKE_DONE. Experience has shown that many applications get | ||
| 21 | + confused by this and assume that a TLSv1.2 renegotiation has started. This | ||
| 22 | + can break KeyUpdate handling. Instead we no longer signal the start and end | ||
| 23 | + of a post handshake message exchange (although the messages themselves are | ||
| 24 | + still signalled). This could break some applications that were expecting | ||
| 25 | + the old signals. However without this KeyUpdate is not usable for many | ||
| 26 | + applications. | ||
| 27 | + [Matt Caswell] | ||
| 28 | + | ||
| 29 | + *) Fix a bug in the computation of the endpoint-pair shared secret used | ||
| 30 | + by DTLS over SCTP. This breaks interoperability with older versions | ||
| 31 | + of OpenSSL like OpenSSL 1.1.0 and OpenSSL 1.0.2. There is a runtime | ||
| 32 | + switch SSL_MODE_DTLS_SCTP_LABEL_LENGTH_BUG (off by default) enabling | ||
| 33 | + interoperability with such broken implementations. However, enabling | ||
| 34 | + this switch breaks interoperability with correct implementations. | ||
| 35 | + | ||
| 36 | + *) Fix a use after free bug in d2i_X509_PUBKEY when overwriting a | ||
| 37 | + re-used X509_PUBKEY object if the second PUBKEY is malformed. | ||
| 38 | + [Bernd Edlinger] | ||
| 39 | + | ||
| 40 | + *) Move strictness check from EVP_PKEY_asn1_new() to EVP_PKEY_asn1_add0(). | ||
| 41 | + [Richard Levitte] | ||
| 42 | + | ||
| 43 | + *) Remove the 'dist' target and add a tarball building script. The | ||
| 44 | + 'dist' target has fallen out of use, and it shouldn't be | ||
| 45 | + necessary to configure just to create a source distribution. | ||
| 46 | + [Richard Levitte] | ||
| 47 | + | ||
| 10 | 48 | Changes between 1.1.1 and 1.1.1a [20 Nov 2018] | |
| 11 | 49 | ||
| 12 | 50 | *) Timing vulnerability in DSA signature generation | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -57,7 +57,7 @@ guidelines: | |||
| 57 | 57 | 7. For user visible changes (API changes, behaviour changes, ...), | |
| 58 | 58 | consider adding a note in CHANGES. This could be a summarising | |
| 59 | 59 | description of the change, and could explain the grander details. | |
| 60 | - Have a look through existing entries for inspiration. | ||
| 60 | + Have a look through existing entries for inspiration. | ||
| 61 | 61 | Please note that this is NOT simply a copy of git-log oneliners. | |
| 62 | 62 | Also note that security fixes get an entry in CHANGES. | |
| 63 | 63 | This file helps users get more in depth information of what comes | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -306,7 +306,7 @@ my %targets=( | |||
| 306 | 306 | sha1_asm_src => "sha1-armv4-large.S sha256-armv4.S sha512-armv4.S", | |
| 307 | 307 | modes_asm_src => "ghash-armv4.S ghashv8-armx.S", | |
| 308 | 308 | chacha_asm_src => "chacha-armv4.S", | |
| 309 | - poly1305_asm_src=> "poly1305-armv4.S", | ||
| 309 | + poly1305_asm_src=> "poly1305-armv4.S", | ||
| 310 | 310 | keccak1600_asm_src => "keccak1600-armv4.S", | |
| 311 | 311 | perlasm_scheme => "void" | |
| 312 | 312 | }, | |
| Back | FazBrowse Home | New Git URL |
0 commit comments