-
Notifications
You must be signed in to change notification settings - Fork 118
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
[EC] Unify scalar_mul_public for ec_nistp curves #2004
base: main
Are you sure you want to change the base?
Conversation
c034744
to
db30820
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2004 +/- ##
=======================================
Coverage 78.89% 78.89%
=======================================
Files 595 594 -1
Lines 102451 102380 -71
Branches 14527 14508 -19
=======================================
- Hits 80827 80772 -55
+ Misses 20976 20958 -18
- Partials 648 650 +2 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
Co-authored-by: Nevine Ebeid <[email protected]>
Co-authored-by: Nevine Ebeid <[email protected]>
db30820
to
12c1aec
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.
Left a documentation question whether for this PR or an upcoming one.
ctx->felem_neg(ftmp, &g_table[idx * g_point_num_limbs + ctx->felem_num_limbs]); | ||
y_tmp = ftmp; | ||
} | ||
ctx->point_add(x_out, y_out, z_out, x_out, y_out, z_out, 1, |
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.
Is the mixed flag explained elsewhere (re removing the comments that were before this step.)
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.
Samuel asked the same so I'll add the comment back in my next PR that's going to deal with point addition anyway.
Issues:
CryptoAlg-2545
Description of changes:
Added unified scalar_mul_public implemented in ec_nistp.
This is a refactor of the algorithm in p384.c and p521.c
that makes it generic. The implementations in p384.c, p521.c,
as well as in p256.c, are substituted with this new unified
implementation.
Call-outs:
Builds on top of #2003
Testing:
How is this change tested (unit tests, fuzz tests, etc.)? Are there any testing steps to be verified by the reviewer?
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license.