Fix HPKE decryption ciphertext length validation#14391
Merged
reaperhulk merged 1 commit intomainfrom Feb 27, 2026
Merged
Conversation
The minimum ciphertext length check only validated against X25519_NENC (32 bytes) but didn't account for the 16-byte AES-GCM authentication tag. This allowed 32-47 byte ciphertexts to pass the early check and proceed through the full DH exchange and HKDF key schedule before AES-GCM correctly rejected them. Add AES_128_GCM_NT constant and include it in the check to avoid wasted computation on trivially invalid inputs. https://claude.ai/code/session_01EGLxxnHUgfiStRV9BzFJxo
reaperhulk
approved these changes
Feb 27, 2026
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.
Summary
This PR fixes the ciphertext length validation in HPKE decryption to account for the authentication tag size.
Key Changes
AES_128_GCM_NTconstant (16 bytes) toaead_paramsmodule to represent the AES-128-GCM authentication tag lengthSuite::decrypt()to validate that the ciphertext is at leastX25519_NENC + AES_128_GCM_NTbytes, rather than justX25519_NENCbytesDetails
The previous validation was insufficient as it only checked for the encapsulated key size but did not account for the authentication tag that must be present in the ciphertext. This could allow invalid ciphertexts to pass the length check and potentially cause issues during decryption. The fix ensures the ciphertext contains both the encapsulated key and the authentication tag before attempting decryption.
https://claude.ai/code/session_01EGLxxnHUgfiStRV9BzFJxo