Move cryptographic algorithms and utilities to a new `crypto` mod
[rust-lightning] / lightning / src / crypto / mod.rs
1 use bitcoin::hashes::cmp::fixed_time_eq;
2
3 pub(crate) mod chacha20;
4 #[cfg(not(fuzzing))]
5 pub(crate) mod poly1305;
6 pub(crate) mod chacha20poly1305rfc;
7 pub(crate) mod streams;
8 pub(crate) mod utils;