mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-02-14 10:45:47 +00:00
This crate exposes both the ChaCha20Poly1305 IETF construction, and the underlying ChaCha20 IETF primitive, removing the need for depending on our own fork of the previous chacha20-poly1305-aead crate.
22 lines
444 B
TOML
22 lines
444 B
TOML
[package]
|
|
name = "zcash_primitives"
|
|
version = "0.0.0"
|
|
authors = [
|
|
"Jack Grigg <jack@z.cash>",
|
|
]
|
|
|
|
[dependencies]
|
|
byteorder = "1"
|
|
crypto_api_chachapoly = "0.1"
|
|
ff = { path = "../ff" }
|
|
hex = "0.3"
|
|
lazy_static = "1"
|
|
pairing = { path = "../pairing" }
|
|
rand = "0.4"
|
|
sapling-crypto = { path = "../sapling-crypto" }
|
|
sha2 = "0.8"
|
|
|
|
[dependencies.blake2-rfc]
|
|
git = "https://github.com/gtank/blake2-rfc"
|
|
rev = "7a5b5fc99ae483a0043db7547fb79a6fa44b88a9"
|