Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Openssl 3.1.3 #1840

Open
wants to merge 34 commits into
base: develop-pre-1.11.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
570d39f
3.0.0 specific create cert changes
disa6302 Oct 23, 2023
c175f9e
SSL Ctx related changes
disa6302 Oct 24, 2023
c0c32af
Add CI and build legacy version option
disa6302 Oct 24, 2023
66f0357
Older build fix
disa6302 Oct 24, 2023
96f3a45
Add latomic linkage for arm32
disa6302 Oct 24, 2023
394efdd
Unused variable fix in mac
disa6302 Oct 24, 2023
8cda57f
Fix pRsa issue
disa6302 Oct 24, 2023
c945848
Disable building minimal examples
disa6302 Oct 24, 2023
cd28336
Fix MD5 deprecation
disa6302 Oct 24, 2023
29f78e7
Move generate MD5 to openssl file
disa6302 Oct 24, 2023
7f7fc33
move EVP to macro
disa6302 Oct 24, 2023
92b6157
Check openssl version on windows
disa6302 Oct 24, 2023
8dbafbd
Path logging, test windows build
disa6302 Oct 24, 2023
10466d9
Reset the search paths
disa6302 Oct 24, 2023
2d87846
Enable all CI
disa6302 Oct 25, 2023
9ec1d9e
ifdef get peer certificate block
disa6302 Oct 25, 2023
f46e850
More CI, libbenchmark version update, readme update
disa6302 Oct 25, 2023
1f891d1
Address comments and add new CI for mac
disa6302 Oct 26, 2023
961a4f8
Error handling for EVP MD5
disa6302 Nov 1, 2023
e17773b
Fix mbedtls build issue
disa6302 Nov 1, 2023
2810e1b
Get around mac os unused label error
disa6302 Nov 1, 2023
042d469
Sanitize input
disa6302 Nov 1, 2023
ee5e58a
Remove KVS_MD5_DIGEST
disa6302 Nov 2, 2023
2b37cdd
Fix version bug with ecdh
disa6302 Nov 2, 2023
0f624f6
Have specific check for <1.0.2, <1.1.0 and >=1.1.0
disa6302 Dec 18, 2023
67ce547
Fix openssl old builds with aws-sdk-test
disa6302 Dec 18, 2023
a84d110
Disabled AWS_SDK for windows and switch instance type to latest for f…
disa6302 Dec 18, 2023
f85ef03
Print openssl version
disa6302 Dec 18, 2023
7bb8d28
Ensure lws uses installed openssl libs if build_deps is on
disa6302 Dec 18, 2023
42b871a
Disable AWS for lws ubuntu 20.04
disa6302 Dec 19, 2023
19daa51
Reenable aws sdk tests and libcurl apt installation to get lws debug …
disa6302 Dec 19, 2023
6f39a6c
Enable all CI, fix instance label for ubuntu instances
disa6302 Dec 27, 2023
90ba931
Merge branch 'develop' into openssl-3.1.3
disa6302 Jan 2, 2024
8d7b1d5
Merge branch 'develop' into openssl-3.1.3
disa6302 Jan 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/build_windows_openssl.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64
mkdir build
cd build
cmd.exe /c cmake -G "NMake Makefiles" ..
cmake -G "NMake Makefiles" -DBUILD_TEST=TRUE -DENABLE_AWS_SDK_IN_TESTS=OFF -DEXT_PTHREAD_INCLUDE_DIR="C:/tools/pthreads-w32-2-9-1-release/Pre-built.2/include/" -DEXT_PTHREAD_LIBRARIES="C:/tools/pthreads-w32-2-9-1-release/Pre-built.2/lib/x64/libpthreadGC2.a" ..
nmake
6 changes: 6 additions & 0 deletions .github/build_windows_openssl_old.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64
mkdir build
cd build
cmd.exe /c cmake -G "NMake Makefiles" ..
cmake -G "NMake Makefiles" -DBUILD_TEST=TRUE -DENABLE_AWS_SDK_IN_TESTS=OFF -DBUILD_LEGACY_OPENSSL_VERSION=ON -DEXT_PTHREAD_INCLUDE_DIR="C:/tools/pthreads-w32-2-9-1-release/Pre-built.2/include/" -DEXT_PTHREAD_LIBRARIES="C:/tools/pthreads-w32-2-9-1-release/Pre-built.2/lib/x64/libpthreadGC2.a" ..
nmake
Loading
Loading