1 //! Some utility modules live here. See individual sub-modules for more info.
4 pub(crate) mod fuzz_wrappers;
10 pub(crate) mod byte_utils;
11 pub(crate) mod chacha20;
12 #[cfg(not(feature = "fuzztarget"))]
13 pub(crate) mod poly1305;
14 pub(crate) mod chacha20poly1305rfc;
15 pub(crate) mod transaction_utils;
18 pub(crate) mod ser_macros;
20 pub(crate) mod macro_logger;
22 // These have to come after macro_logger to build
27 pub(crate) mod test_utils;
29 /// impls of traits that add exra enforcement on the way they're called. Useful for detecting state
30 /// machine errors and used in fuzz targets and tests.
31 #[cfg(any(test, feature = "fuzztarget"))]
32 pub mod enforcing_trait_impls;