perf(bls12-381): eliminate finalexp ~naively #1173
Merged
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.
Description
Applying https://eprint.iacr.org/2024/640.pdf as in #1143 and #1155 for BLS12-381 doesn't work (#1143 (comment)). Alternatively we can apply theorem 1 of that paper to check
f == c^r
instead. @feltroidprime suggested to check instead thatf^k == c^(q-u)
wherek=(u-1)^2/3
using a Frobenius map and 2 optimized addition chains. This PR implements their idea after pushingf
to the cyclotomic subgroup. The exponentiation are done then using Granger--Scott algorithm.TODO:
Karabina12345
instead of Granger--Scott.c^(-u)
in the the Miller loop computation.Type of change
How has this been tested?
The existing
TestPairingCheckTestSolve
works for this.How has this been benchmarked?
This PR saves 681,769 scs or 199,105 R1CS in a BLS12-381 pairing.
Checklist:
golangci-lint
does not output errors locally