Skip to content

Commit ebe0b05

Browse files
sam-githubMylesBorins
authored andcommitted
deps: upgrade openssl sources to 1.1.1b
This updates all sources in deps/openssl/openssl with openssl-1.1.1b. Backport-PR-URL: #27419 PR-URL: #26327 Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
1 parent bbf5373 commit ebe0b05

File tree

452 files changed

+6927
-4232
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

452 files changed

+6927
-4232
lines changed

deps/openssl/openssl/.gitattributes

-3
This file was deleted.

deps/openssl/openssl/.github/PULL_REQUEST_TEMPLATE.md

-14
This file was deleted.

deps/openssl/openssl/.gitmodules

-11
This file was deleted.

deps/openssl/openssl/.travis-apt-pin.preferences

-15
This file was deleted.

deps/openssl/openssl/.travis-create-release.sh

-11
This file was deleted.

deps/openssl/openssl/.travis.yml

-254
This file was deleted.

deps/openssl/openssl/CHANGES

+38
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,44 @@
77
https://github.com/openssl/openssl/commits/ and pick the appropriate
88
release branch.
99

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+
1048
Changes between 1.1.1 and 1.1.1a [20 Nov 2018]
1149

1250
*) Timing vulnerability in DSA signature generation

deps/openssl/openssl/CONTRIBUTING

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ guidelines:
5757
7. For user visible changes (API changes, behaviour changes, ...),
5858
consider adding a note in CHANGES. This could be a summarising
5959
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.
6161
Please note that this is NOT simply a copy of git-log oneliners.
6262
Also note that security fixes get an entry in CHANGES.
6363
This file helps users get more in depth information of what comes

deps/openssl/openssl/Configurations/00-base-templates.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ my %targets=(
306306
sha1_asm_src => "sha1-armv4-large.S sha256-armv4.S sha512-armv4.S",
307307
modes_asm_src => "ghash-armv4.S ghashv8-armx.S",
308308
chacha_asm_src => "chacha-armv4.S",
309-
poly1305_asm_src=> "poly1305-armv4.S",
309+
poly1305_asm_src=> "poly1305-armv4.S",
310310
keccak1600_asm_src => "keccak1600-armv4.S",
311311
perlasm_scheme => "void"
312312
},

0 commit comments

Comments
 (0)