sodium_crypto_aead_aes256gcm_is_available: document the 8.4 aarch64 support - #5780
Open
lacatoire wants to merge 1 commit into
Open
sodium_crypto_aead_aes256gcm_is_available: document the 8.4 aarch64 support#5780lacatoire wants to merge 1 commit into
lacatoire wants to merge 1 commit into
Conversation
lacatoire
force-pushed
the
sync-src/sodium-aes256gcm-aarch64-84
branch
from
August 21, 2026 10:01
77677e1 to
dfa13bc
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.
Adds a changelog section to
sodium_crypto_aead_aes256gcm_is_available()for the PHP 8.4 aarch64 support. Before 8.4 theHAVE_AESGCMguard inext/sodium/libsodium.ccovered x86 and x86-64 only, so the function always returnedfalseon aarch64 and the other AES-256-GCM functions were not registered at all. PHP 8.4 extends the guard to__aarch64__and_M_ARM64(php-src #12867,UPGRADINGfor PHP 8.4, "sodium_crypto_aead_aes256gcm_*() functions are now enabled on aarch64 CPUs with the ARM cryptographic extensions").The change was only covered by the migration guide so far; this page had no changelog section.
Tracker: PHP 8.4 Documentation Tracker.