openssl: switch to modern init for LibreSSL 2.7.0+#11611
Closed
vszakats wants to merge 1 commit intocurl:masterfrom
Closed
openssl: switch to modern init for LibreSSL 2.7.0+#11611vszakats wants to merge 1 commit intocurl:masterfrom
vszakats wants to merge 1 commit intocurl:masterfrom
Conversation
LibreSSL 2.7.0 (2018-03-21) introduced automatic initialization, `OPENSSL_init_ssl()` function and deprecated the old, manual init method, as seen in OpenSSL 1.1.0. Switch to the modern method when available. Ref: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.7.0-relnotes.txt Closes #xxxxx
bagder
approved these changes
Aug 7, 2023
Member
Author
|
Looking to do the same in https://man.openbsd.org/OpenBSD-6.3/EVP_cleanup.3 - deprecated |
ptitSeb
pushed a commit
to wasix-org/curl
that referenced
this pull request
Sep 25, 2023
LibreSSL 2.7.0 (2018-03-21) introduced automatic initialization, `OPENSSL_init_ssl()` function and deprecated the old, manual init method, as seen in OpenSSL 1.1.0. Switch to the modern method when available. Ref: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.7.0-relnotes.txt Reviewed-by: Daniel Stenberg Closes curl#11611
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Dec 15, 2023
Earlier we bumped LibreSSL to use modern initialization, but did not touch deinitialization [1]. Fix it in this patch. Regression from bec0c5b curl#11611 [1] curl#11611 (comment) Reported-by: Mike Hommey Fixes curl#12525 Closes curl#12526
vszakats
added a commit
that referenced
this pull request
Dec 15, 2023
Earlier we switched to use modern initialization with LibreSSL v2.7.0 and up, but did not touch deinitialization [1]. Fix it in this patch. Regression from bec0c5b #11611 [1] #11611 (comment) Reported-by: Mike Hommey Reviewed-by: Daniel Stenberg Fixes #12525 Closes #12526
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
LibreSSL 2.7.0 (2018-03-21) introduced automatic initialization,
OPENSSL_init_ssl()function and deprecated the old, manual init method, as seen in OpenSSL 1.1.0. Switch to the modern method when available.Ref: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.7.0-relnotes.txt
Closes #11611