Skip to content

Commit

Permalink
added G1, G2 and signature verification functions to CLVM, under the …
Browse files Browse the repository at this point in the history
…softfork guard
  • Loading branch information
cameroncooper authored and arvidn committed May 11, 2023
1 parent f695974 commit 83ff075
Show file tree
Hide file tree
Showing 10 changed files with 824 additions and 54 deletions.
38 changes: 33 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ lazy_static = "=1.4.0"
num-bigint = "=0.4.3"
num-traits = "=0.2.15"
num-integer = "=0.1.45"
bls12_381 = "=0.8.0"
sha2 = "=0.10.6"
# the experimental feature enables hashing to curves
bls12_381 = { version = "=0.8.0", features = ["experimental"] }
# the newer sha2 crate doesn't implement the digest traits required by HKDF
group = "=0.13.0"
sha2 = "=0.9.9"
openssl = { version = "=0.10.52", features = ["vendored"], optional = true }

[dev-dependencies]
Expand Down
Loading

0 comments on commit 83ff075

Please sign in to comment.