Skip to content

Commit f1a8b9b

Browse files
committed
Upgraded OpenSSL dependency to v3.5. Added support for X25519MLKEM768, SecP256r1MLKEM768, SecP384r1MLKEM1024, brainpoolP256r1tls13, brainpoolP384r1tls13, brainpoolP512r1tls13, and curveSM2 groups.
1 parent 7ba5ee0 commit f1a8b9b

4 files changed

Lines changed: 240 additions & 68 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ uninstall:
141141
@true
142142

143143
opensslpull:
144-
upstream=`git ls-remote https://github.com/openssl/openssl | grep -Eo '(openssl-3\.0\.[0-9]+)' | sort -V | tail -n 1` ; \
144+
upstream=`git ls-remote https://github.com/openssl/openssl | grep -Eo '(openssl-3\.5\.[0-9]+)' | sort -V | tail -n 1` ; \
145145
if [ -d openssl -a -d openssl/.git ]; then \
146146
if [ "$$upstream" != "`cd ./openssl && git describe --exact-match --tags`" ]; then \
147147
cd ./openssl && git fetch --depth 1 origin refs/tags/$$upstream:refs/tags/$$upstream && git checkout $$upstream && touch ../.openssl.is.fresh ; \

Makefile.mingw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ opensslpull:
7373
if [ -d openssl_mingw -a -d openssl_mingw/.git ]; then \
7474
cd ./openssl_mingw && git checkout `git ls-remote https://github.com/openssl/openssl | grep -Eo '(openssl-3\.0\.[0-9]+)' | sort --version-sort | tail -n 1` && git pull | grep -q "Already up-to-date." && [ -e ../.openssl_mingw.is.fresh ] || touch ../.openssl_mingw.is.fresh ; \
7575
else \
76-
git clone --depth 1 -b `git ls-remote https://github.com/openssl/openssl | grep -Eo '(openssl-3\.0\.[0-9]+)' | sort --version-sort | tail -n 1` https://github.com/openssl/openssl ./openssl_mingw && cd ./openssl_mingw && touch ../.openssl_mingw.is.fresh ; \
76+
git clone --depth 1 -b `git ls-remote https://github.com/openssl/openssl | grep -Eo '(openssl-3\.5\.[0-9]+)' | sort --version-sort | tail -n 1` https://github.com/openssl/openssl ./openssl_mingw && cd ./openssl_mingw && touch ../.openssl_mingw.is.fresh ; \
7777
fi
7878

7979
zlib_mingw/libz.a: zlibpull

0 commit comments

Comments
 (0)