Switch Groth16 SNARK circuit from SHA-256 to Poseidon hash#31
Merged
Conversation
Replace the SHA-256 gadget (~150K R1CS constraints) with Poseidon sponge (~480 constraints) for the in-circuit key hash and MAC computation. This yields ~300x fewer constraints and significantly faster prove times (~3s vs ~30s in debug). - Add src/poseidon.rs: BN254 Poseidon config (t=3, rate=2, alpha=5), native hash, bytes<->field element conversion - Rewrite src/snark.rs: PoseidonKeyProofCircuit with 3 native field element public inputs (key_hash, payload_hash, mac) instead of 768 Boolean vars; private witness is 1 field element (key) - Rename Groth16Sha256 -> Groth16Poseidon across all modules - Update CLAUDE.md documentation All 132 tests pass. Clippy clean. No wire format changes (algorithm 4 byte value unchanged). https://claude.ai/code/session_01LJyL1uYXD1JHMq8Q3v7shM
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.
Replace the SHA-256 gadget (~150K R1CS constraints) with Poseidon sponge (~480 constraints) for the in-circuit key hash and MAC computation. This yields ~300x fewer constraints and significantly faster prove times (~3s vs ~30s in debug).
All 132 tests pass. Clippy clean. No wire format changes (algorithm 4 byte value unchanged).
https://claude.ai/code/session_01LJyL1uYXD1JHMq8Q3v7shM