zebra_chain/primitives.rs
1//! External primitives used in Zcash structures.
2//!
3//! This contains re-exports of libraries used in the public API, as well as stub
4//! definitions of primitive types which must be represented in this library but
5//! whose functionality is implemented elsewhere.
6
7mod proofs;
8
9mod address;
10
11pub use address::Address;
12
13pub mod byte_array;
14
15pub use ed25519_zebra as ed25519;
16pub use reddsa;
17pub use redjubjub;
18pub use x25519_dalek as x25519;
19
20pub use proofs::{Bctv14Proof, Groth16Proof, Halo2Proof, ZkSnarkProof};
21
22pub mod zcash_history;
23pub mod zcash_note_encryption;
24pub(crate) mod zcash_primitives;