Skip to content

Commit

Permalink
update OpenSSL to v3.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mirostauder committed Feb 7, 2024
1 parent 3ee73f8 commit 73e33c7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions deps/libssl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ In ProxySQL 2.4.8 , libssl was upgraded from version 3.0.2 to 3.0.8

In ProxySQL 2.5.x , libssl was upgraded from version 3.0.8 to 3.1.0

In ProxySQL 2.6.0 , libssl was upgraded from version 3.1.0 to 3.1.5


Do not upgrade without extensive testing.

Expand Down
2 changes: 1 addition & 1 deletion deps/libssl/openssl
Binary file not shown.
10 changes: 8 additions & 2 deletions deps/libssl/verify-bio_st-match.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,14 @@ LIBBIOST=$(cd ../../; cat ./lib/mysql_data_stream.cpp | sed '/^\/\*/,/*\//d' | s

echo -n "Comparing ... "
if [[ "$LIBBIOST" == "$DEPBIOST" ]]; then
echo "PASS - bio_st is a match!";
echo "PASS - bio_st is a match!"
else
echo "FAIL - bio_st does not match!";
echo "FAIL - bio_st does not match!"
echo
echo ">>> lib/mysql_data_stream.cpp"
echo "$LIBBIOST"
echo "==="
echo "$DEPBIOST"
echo "<<< deps/libssl/openssl/crypto/bio/bio_local.h"
exit 1
fi

0 comments on commit 73e33c7

Please sign in to comment.