Skip to content

Commit dc9d645

Browse files
sam-githubBethGriggs
authored andcommittedSep 19, 2019
deps: upgrade openssl sources to 1.0.2s
PR-URL: #28230 Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
1 parent 3ee076f commit dc9d645

Some content is hidden

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

107 files changed

+569
-38796
lines changed
 

‎deps/openssl/openssl/CHANGES

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

10+
Changes between 1.0.2r and 1.0.2s [28 May 2019]
11+
12+
*) Change the default RSA, DSA and DH size to 2048 bit instead of 1024.
13+
This changes the size when using the genpkey app when no size is given. It
14+
fixes an omission in earlier changes that changed all RSA, DSA and DH
15+
generation apps to use 2048 bits by default.
16+
[Kurt Roeckx]
17+
18+
*) Add FIPS support for Android Arm 64-bit
19+
20+
Support for Android Arm 64-bit was added to the OpenSSL FIPS Object
21+
Module in Version 2.0.10. For some reason, the corresponding target
22+
'android64-aarch64' was missing OpenSSL 1.0.2, whence it could not be
23+
built with FIPS support on Android Arm 64-bit. This omission has been
24+
fixed.
25+
[Matthias St. Pierre]
26+
1027
Changes between 1.0.2q and 1.0.2r [26 Feb 2019]
1128

1229
*) 0-byte record padding oracle

‎deps/openssl/openssl/Configure

+1
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,7 @@ my %table=(
475475
"android-x86","gcc:-mandroid -I\$(ANDROID_DEV)/include -B\$(ANDROID_DEV)/lib -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:".eval{my $asm=${x86_elf_asm};$asm=~s/:elf/:android/;$asm}.":dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
476476
"android-armv7","gcc:-march=armv7-a -mandroid -I\$(ANDROID_DEV)/include -B\$(ANDROID_DEV)/lib -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${armv4_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
477477
"android-mips","gcc:-mandroid -I\$(ANDROID_DEV)/include -B\$(ANDROID_DEV)/lib -O3 -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${mips32_asm}:o32:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
478+
"android64-aarch64","gcc:-mandroid -fPIC -I\$(ANDROID_DEV)/include -B\$(ANDROID_DEV)/lib -O3 -Wall::-D_REENTRANT::-pie%-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${aarch64_asm}:linux64:dlfcn:linux-shared:::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
478479

479480
#### *BSD [do see comment about ${BSDthreads} above!]
480481
"BSD-generic32","gcc:-O3 -fomit-frame-pointer -Wall::${BSDthreads}:::BN_LLONG RC2_CHAR RC4_INDEX DES_INT DES_UNROLL:${no_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",

0 commit comments

Comments
 (0)
Please sign in to comment.