1 //! Some utility modules live here. See individual sub-modules for more info.
7 pub(crate) mod byte_utils;
8 pub(crate) mod chacha20;
9 #[cfg(not(feature = "fuzztarget"))]
10 pub(crate) mod poly1305;
11 pub(crate) mod chacha20poly1305rfc;
12 pub(crate) mod internal_traits;
14 pub(crate) mod transaction_utils;
17 pub(crate) mod ser_macros;
19 pub(crate) mod macro_logger;
21 // These have to come after macro_logger to build
25 #[cfg(feature = "fuzztarget")]
26 pub use self::rng::{reset_rng_state, fill_bytes};
29 pub(crate) mod test_utils;