| 123456789101112131415161718192021 |
- pub mod fixed_bases;
- pub mod sinsemilla;
- pub mod util;
- pub use fixed_bases::{NullifierK, OrchardFixedBases, OrchardFixedBasesFull, ValueCommitV, H};
- pub const DRK_SCHNORR_DOMAIN: &[u8] = b"DarkFi_Schnorr";
- pub const MERKLE_DEPTH_ORCHARD: usize = 32;
- pub const L_ORCHARD_MERKLE: usize = 255;
- #[allow(dead_code)]
- /// $\ell^\mathsf{Orchard}_\mathsf{base}$
- pub(crate) const L_ORCHARD_BASE: usize = 255;
- /// $\ell^\mathsf{Orchard}_\mathsf{scalar}$
- pub(crate) const L_ORCHARD_SCALAR: usize = 255;
- /// $\ell_\mathsf{value}$
- pub(crate) const L_VALUE: usize = 64;
|