-
Notifications
You must be signed in to change notification settings - Fork 39
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
[WIP] Implement ECC chip #23
Conversation
Codecov Report
@@ Coverage Diff @@
## constants #23 +/- ##
==============================================
- Coverage 56.52% 37.98% -18.54%
==============================================
Files 16 17 +1
Lines 414 616 +202
==============================================
Hits 234 234
- Misses 180 382 +202
Continue to review full report at Codecov.
|
1c0e877
to
3f5220f
Compare
f775e2b
to
bd7dea7
Compare
c316ef0
to
9fb3f56
Compare
3d56a57
to
b5e8b46
Compare
06b79c9
to
32cccbd
Compare
44b30c5
to
0454694
Compare
We can generalise this in a later iteration to remove Orchard-specific assumptions.
31aff86
to
faa88c6
Compare
[WIP] Fix ECC implementation to work with new Chip trait
4805987
to
eb19ca2
Compare
3a068cf
to
4016e7b
Compare
mod witness_point; | ||
mod witness_scalar_fixed; | ||
mod witness_scalar_fixed_short; | ||
mod witness_scalar_var; |
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.
We don't need to separately decompose ivk
for variable-base scalar mul; we can merge the decomposition into the scalar mul.
eb19ca2
to
de75c95
Compare
Superseded by optimised implementation (#73). |
This is based on #43 (Add Orchard constants) which is unmerged.
It also points to the
chip-config
branch zcash/halo2#253 which is unmerged onhalo2
.