We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Followup of noir-lang/acvm#313.
Supporting variable-sized input to the hash function is useful for e.g. Ethereum storage proofs.
let message_size = 4; let hash_a = std::hash::keccak256([1,2,3,4], message_size); let hash_b = std::hash::keccak256([1,2,3,4,0,0,0,0], message_size); assert hash_a == hash_b; let message_size_big = 8; let hash_c = std::hash::keccak256([1,2,3,4,0,0,0,0], message_size_big); assert hash_a != hash_c;
The content you are editing has changed. Please copy your edits and refresh the page.
No
The text was updated successfully, but these errors were encountered:
kevaundray
Successfully merging a pull request may close this issue.
Problem
Followup of noir-lang/acvm#313.
Supporting variable-sized input to the hash function is useful for e.g. Ethereum storage proofs.
Happy Case
Additional Context
Blocked by
Would you like to submit a PR for this Issue?
No
The text was updated successfully, but these errors were encountered: