feat(encryption): support AES-256 keys for reading Parquet data files - #2878
Merged
blackmwk merged 3 commits intoJul 23, 2026
Merged
Conversation
4 tasks
xanderbailey
approved these changes
Jul 22, 2026
xanderbailey
left a comment
Contributor
There was a problem hiding this comment.
Awesome stuff! Thanks Matt!
blackmwk
approved these changes
Jul 23, 2026
blackmwk
left a comment
Contributor
There was a problem hiding this comment.
Thanks @mbutrovich for this pr!
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.
Which issue does this PR close?
Depends on the arrow-rs 58.4.0 release tracked in apache/arrow-rs#10349.
What changes are included in this PR?
arrow/parquetdeps from58to58.4. arrow-rs 58.4.0 adds AES-256 for Parquet modular encryption (58.3.0 was AES-128 only), landed via [parquet] Allow more encryption algorithms arrow-rs#9203.assert_encrypted_parquet_roundtrip(key)helper with_aes_128and_aes_256callers.Note: 192-bit is not supported for data files. arrow-rs uses
ring, which has no AES-192-GCM. Can revisit later.Are these changes tested?
Yes. Unit test
test_read_encrypted_parquet_aes_256writes and reads back a 256-bit encrypted Parquet file. It fails on arrow-rs 58.3.0 (ringrejects the 32-byte key) and passes on 58.4.0.