-
Notifications
You must be signed in to change notification settings - Fork 450
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use geth's in-tree BLS again after v1.14.0
- Loading branch information
1 parent
6257261
commit 8f4998c
Showing
4 changed files
with
13 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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
Submodule go-ethereum
updated
24 files
+84 −0 | crypto/bls12381/arithmetic_decl.go | |
+567 −0 | crypto/bls12381/arithmetic_fallback.go | |
+2,150 −0 | crypto/bls12381/arithmetic_x86.s | |
+25 −0 | crypto/bls12381/arithmetic_x86_adx.go | |
+25 −0 | crypto/bls12381/arithmetic_x86_noadx.go | |
+230 −0 | crypto/bls12381/bls12_381.go | |
+13 −0 | crypto/bls12381/bls12_381_test.go | |
+340 −0 | crypto/bls12381/field_element.go | |
+250 −0 | crypto/bls12381/field_element_test.go | |
+167 −0 | crypto/bls12381/fp.go | |
+277 −0 | crypto/bls12381/fp12.go | |
+252 −0 | crypto/bls12381/fp2.go | |
+351 −0 | crypto/bls12381/fp6.go | |
+1,411 −0 | crypto/bls12381/fp_test.go | |
+434 −0 | crypto/bls12381/g1.go | |
+284 −0 | crypto/bls12381/g1_test.go | |
+455 −0 | crypto/bls12381/g2.go | |
+287 −0 | crypto/bls12381/g2_test.go | |
+121 −0 | crypto/bls12381/gt.go | |
+227 −0 | crypto/bls12381/isogeny.go | |
+282 −0 | crypto/bls12381/pairing.go | |
+230 −0 | crypto/bls12381/pairing_test.go | |
+158 −0 | crypto/bls12381/swu.go | |
+45 −0 | crypto/bls12381/utils.go |
This file contains 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
This file contains 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