orchard/src/primitives.rs

10 lines
196 B
Rust
Raw Normal View History

2021-01-20 12:35:54 -08:00
//! Primitives used in the Orchard protocol.
// TODO:
// - DH stuff
// - EphemeralPublicKey
// - EphemeralSecretKey
2021-02-08 14:56:32 -08:00
pub(crate) mod poseidon;
2021-01-20 12:35:54 -08:00
pub mod redpallas;
2021-02-24 15:04:43 -08:00
pub(crate) mod sinsemilla;