Track ChaCha20 32-bit counter and error on overflow#14977
Draft
reaperhulk wants to merge 2 commits into
Draft
Conversation
ChaCha20 now extracts the 32-bit little-endian block counter from the first 4 bytes of the 128-bit nonce and tracks the number of bytes processed. Encrypting or decrypting more than (2**32 - counter) * 64 bytes would overflow that counter, at which point the underlying implementation silently diverges from RFC 7539. We now raise ValueError instead. Setting the counter portion of the nonce to zero allows encrypting up to 256 GiB with a given nonce. The docs are updated accordingly and no longer suggest randomizing the full value. The counter-overflow.txt vectors (and their generator/verifier docs) captured the old carry behavior, which can no longer be reproduced, so they are removed in favor of explicit overflow tests. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
ChaCha20 now extracts the 32-bit little-endian block counter from the first 4 bytes of the 128-bit nonce and tracks the number of bytes processed. Encrypting or decrypting more than (2**32 - counter) * 64 bytes would overflow that counter, at which point the underlying implementation silently diverges from RFC 7539. We now raise ValueError instead.
Setting the counter portion of the nonce to zero allows encrypting up to 256 GiB with a given nonce. The docs are updated accordingly and no longer suggest randomizing the full value.
The counter-overflow.txt vectors (and their generator/verifier docs) captured the old carry behavior, which can no longer be reproduced, so they are removed in favor of explicit overflow tests.