-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump BLST * Test for supranational/blst#22 regression * Use SHA256 from BLST + bump nim-blscurve to reenable fno-tree-vectorize * SHA256 on non-blst platforms import fixes * import fixes again * can't prefix with nimcrypto * address review comment [skip ci] * {.noInit.} on the digests
- Loading branch information
Showing
2 changed files
with
51 additions
and
16 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 nim-blscurve
updated
18 files
+217 −0 | .github/workflows/ci.yml | |
+6 −0 | .travis.yml | |
+18 −6 | README.md | |
+11 −0 | azure-pipelines.yml | |
+36 −0 | benchmarks/bench_sha256.nim | |
+2 −2 | benchmarks/bench_templates.nim | |
+9 −1 | blscurve.nimble | |
+9 −2 | blscurve/bls_backend.nim | |
+16 −20 | blscurve/blst/bls_sig_min_pubkey_size_pop.nim | |
+85 −49 | blscurve/blst/blst_abi.nim | |
+5 −0 | blscurve/blst/blst_lowlevel.nim | |
+56 −0 | blscurve/blst/sha256_abi.nim | |
+5 −2 | blscurve/eth2_keygen/hkdf.nim | |
+1 −1 | blscurve/eth2_keygen/hkdf_mod_r_blst.nim | |
+4 −0 | blscurve/miracl/hash_to_curve.md | |
+8 −12 | blscurve/miracl/hash_to_curve.nim | |
+31 −0 | tests/blst_sha256.nim | |
+1 −1 | vendor/blst |