crypto: migrate non-TLS crypto primitives from openssl/sha2 to aws-lc-rs#35895
Merged
jasonhernandez merged 1 commit intomainfrom Apr 9, 2026
Merged
crypto: migrate non-TLS crypto primitives from openssl/sha2 to aws-lc-rs#35895jasonhernandez merged 1 commit intomainfrom
jasonhernandez merged 1 commit intomainfrom
Conversation
Contributor
|
Thanks for opening this PR! Here are a few tips to help make the review process smooth for everyone. PR title guidelines
Pre-merge checklist
|
6 tasks
c648256 to
8690248
Compare
4ce57fd to
c10ea9f
Compare
c10ea9f to
a108aae
Compare
Migrate 5 leaf crates that use openssl or sha2/digest for hashing and signing (not TLS) to aws-lc-rs equivalents. This consolidates crypto backends ahead of the full TLS migration. Crates migrated: - mz-auth: SCRAM-SHA-256 (openssl HMAC/SHA → aws-lc-rs HMAC/digest) - mz-ssh-util: SSH key fingerprinting (openssl SHA-256 → aws-lc-rs digest) - mz-expr: scalar hash functions (sha1/sha2/subtle → aws-lc-rs) - mz-avro: schema fingerprinting (digest/sha2 → aws-lc-rs digest) - mz-license-keys: signature verification (sha2 → aws-lc-rs digest) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
a108aae to
90b5984
Compare
antiguru
approved these changes
Apr 9, 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
Crates migrated
Test plan
cargo test -p mz-auth -p mz-ssh-util -p mz-expr -p mz-avro -p mz-license-keys🤖 Generated with Claude Code