-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
openssl, net: remove openssl pre-1.1.1 and libressl support (#1435)
## Summary Remove support for OpenSSL older than 3.0, as it has reached EoL and should no longer be used in production. Since version 1.1.1 is still widely used in LTS distributions such as RHEL 8 or Ubuntu 20.04, support for it is retained, however. ## Details * LibreSSL support is also removed from the wrapper, as it has not been tested and likely no longer works with the latest versions of LibreSSL. * Removed shims for older OpenSSL from the wrapper. This is a breaking change although the impacts should be light to non-existent. * Removed unnecessary initialization functions from `net` , since OpenSSL now automatically initializes the necessary components. * `protTLSv1` is now deprecated as TLSv1.0 is no longer safe, and OpenSSL has deprecated the related procedures. * `openssl111` define has been added to handle statically linking with OpenSSL 1.1.1, since the symbol `SSL_get_peer_certificate` depended on it. * CI for M1 macOS has been configured to always use Homebrew-supplied OpenSSL.
- Loading branch information
Showing
3 changed files
with
39 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters