Use DefaultMessageRouter in functional tests
[rust-lightning] / lightning / src / crypto / mod.rs
1 #[cfg(not(fuzzing))]
2 use bitcoin::hashes::cmp::fixed_time_eq;
3
4 pub(crate) mod chacha20;
5 #[cfg(not(fuzzing))]
6 pub(crate) mod poly1305;
7 pub(crate) mod chacha20poly1305rfc;
8 pub(crate) mod streams;
9 pub(crate) mod utils;