Convert zip32 crate into a module of zcash_primitives

This commit is contained in:
Jack Grigg
2019-04-10 07:00:48 -07:00
parent fae919ec1c
commit f25a8a557e
13 changed files with 12 additions and 312 deletions

View File

@@ -6,9 +6,11 @@ authors = [
]
[dependencies]
aes = "0.2"
byteorder = "1"
crypto_api_chachapoly = "0.1"
ff = { path = "../ff" }
fpe = "0.1"
hex = "0.3"
lazy_static = "1"
pairing = { path = "../pairing" }

View File

@@ -1,10 +1,12 @@
#[macro_use]
extern crate lazy_static;
extern crate aes;
extern crate blake2_rfc;
extern crate byteorder;
extern crate crypto_api_chachapoly;
extern crate ff;
extern crate fpe;
extern crate hex;
extern crate pairing;
extern crate rand;
@@ -19,6 +21,7 @@ pub mod note_encryption;
pub mod sapling;
mod serialize;
pub mod transaction;
pub mod zip32;
#[cfg(test)]
mod test_vectors;

File diff suppressed because it is too large Load Diff