-
Notifications
You must be signed in to change notification settings - Fork 331
precompilles: Implement mapping of field elements to BLS12-381 curve points
#1012
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47abe37 to
c56fca8
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1012 +/- ##
==========================================
+ Coverage 94.08% 94.15% +0.06%
==========================================
Files 147 147
Lines 15748 15796 +48
==========================================
+ Hits 14816 14872 +56
+ Misses 932 924 -8
Flags with carried forward coverage won't be shown. Click here to find out more.
|
BLS12-381 curve pointsBLS12-381 curve points
3f5cc8e to
d4f5e81
Compare
51421d0 to
de4c167
Compare
chfast
requested changes
Sep 18, 2024
b53e3f2 to
06af5a5
Compare
06af5a5 to
dac8d4d
Compare
chfast
approved these changes
Sep 18, 2024
chfast
added a commit
that referenced
this pull request
Sep 18, 2024
Implementation of the `bls12_pairing_check` precompile: According to spec https://eips.ethereum.org/EIPS/eip-2537#abi-for-pairing-check Depends on: #1012 Co-authored-by: Paweł Bylica <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Implementation of the
bls12_map_fp_to_g1andbls12_map_fp2_to_g2precompiles: mapping offpfield element to a point onE1curve (BLS12-381) and mappingfp2extension field element to a point onE2curve (BLS12-381) according to the EIP-2537 spec https://eips.ethereum.org/EIPS/eip-2537#abi-for-mapping-fp-element-to-g1-point and https://eips.ethereum.org/EIPS/eip-2537#abi-for-mapping-fp2-element-to-g2-point.Depends on: #1010