Implement Equihash validator

Follows Zcash implementation as closely as possible.
This commit is contained in:
str4d
2017-12-30 23:36:23 +01:00
parent 36d7acf3f3
commit d19c9b5645
5 changed files with 415 additions and 2 deletions

View File

@@ -1,7 +1,10 @@
[package]
name = "librustzcash"
version = "0.1.0"
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <jack@z.cash>",
]
[lib]
name = "rustzcash"
@@ -16,6 +19,10 @@ bellman = "0.1"
byteorder = "1"
rand = "0.4"
[dependencies.blake2-rfc]
git = "https://github.com/gtank/blake2-rfc"
rev = "7a5b5fc99ae483a0043db7547fb79a6fa44b88a9"
[dependencies.sapling-crypto]
git = "https://github.com/zcash-hackworks/sapling-crypto"
rev = "6abfcca25ae233922ecc18a4d2d0b5cb7aab7c8c"