Add OpenSSL 4.0.x support - #47
Merged
Merged
Conversation
This was referenced Apr 20, 2026
Closed
OpenSSL 4.0.0 was released in April 2026, and a shared-docker builder image (`shared-docker-ci-standard-builder-with-openssl-4.0.0`) is now available. The builder configures OpenSSL with `--api=3.0.0`, preserving the 3.0 application API — so extending every `openssl_3.0.x` compile guard to also list `openssl_4.0.x` is sufficient to support the new backend at the FFI boundary. Also drops "supported on..." docstrings that listed every supported backend — tautological prose that's better omitted. Version qualifiers remain where they express a real subset (SHAKE variable-length output). Incidentally corrects a pre-existing docstring in `ssl/crypto/crypto.pony` that listed PBKDF2 as requiring OpenSSL only, though LibreSSL has been supported since first-class LibreSSL landed. Closes #44
SeanTAllen
force-pushed
the
add-openssl-4.0.0-support
branch
from
April 20, 2026 20:14
013bd61 to
3e3cb89
Compare
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.
OpenSSL 4.0.0 was released in April 2026 and a
shared-docker-ci-standard-builder-with-openssl-4.0.0image is now available. The builder configures OpenSSL with--api=3.0.0, preserving the 3.0 application API, so extending everyopenssl_3.0.xcompile guard to also listopenssl_4.0.xis sufficient to support the new backend at the FFI boundary.Adds a new
-Dopenssl_4.0.xdefine and a newmake ssl=4.0.xoption. CI runs the full test suite against OpenSSL 4.0.x on both the most-recent ponyc release and ponyc main.Incidentally corrects a pre-existing docstring in
ssl/crypto/crypto.ponythat listed PBKDF2 as requiring only OpenSSL; LibreSSL has been supported since first-class LibreSSL support landed.Closes #44