Open
Conversation
…poseidon encryption/decryption
…tate permutation circuit
Author
|
I've updated the PR for circomlib 1.0 and circom 2.0. |
|
Any reason this hasn't been merged @weijiekoh? |
Author
No particular reason that I know of. |
|
Does this PR just need to be re-targeted against circomlibjs instead? Edit: Looks like the downstream PLONK optimizations also need to be rebased in. Downstream also split the Poseidon permutations out slightly different. |
|
Hey folks - any chance to get this stuff merged in? |
elkanatovey
added a commit
to elkanatovey/circomlib
that referenced
this pull request
May 12, 2025
code based on the following PR iden3#60
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.
This PR implements Poseidon encryption and decryption following this spec:
https://drive.google.com/file/d/1EVrP3DzoGbmzkRmYnyEDcIQcXVU7GlOd/view
It also refactors the Poseidon permutation function to allow the Poseidon hash function to share code with the encryption/decryption functions.
Circuits and tests are also included.