-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
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
ENH: adds ipa-multipoint library with Pedersen primitives #123
Conversation
16971c0
to
6284b34
Compare
Rust nativelib for ipa-multipoint includes pedersen hash and pedersen commit These primitives are used by Verkle Tries. Signed-off-by: Thomas Zamojski <thomas.zamojski@quadratic-labs.com>
Signed-off-by: Thomas Zamojski <thomas.zamojski@quadratic-labs.com>
Signed-off-by: Thomas Zamojski <thomas.zamojski@quadratic-labs.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just small comment regarding build dependencies
ipa-multipoint/build.gradle
Outdated
testImplementation 'junit:junit:4.13.2' | ||
testImplementation 'org.assertj:assertj-core:3.22.0' | ||
testImplementation 'org.mockito:mockito-core:4.4.0' | ||
implementation "com.google.guava:guava:16+" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need guava as implementation or testImplementation ? I will prefer to have a specific version to have a deterministic build
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed guava as it was unnecessary, and rlp, unit, mockito as well
ce91d5e
to
78ef66a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Currently, ipa-multipoint did not include pedersen hash primitive, and a basic pedersen commit.
This PR improves the library by adding pedersen hashing and revisits pedersen commit.