Merge pull request #844 from sr-gi/843-ln-signing
[rust-lightning] / lightning / src / util / mod.rs
index 04b77872c89011a4b6491019ed252da826e5d363..e8118a9a1a9de962af52a5f171b3d79506f4c168 100644 (file)
@@ -15,9 +15,14 @@ pub(crate) mod fuzz_wrappers;
 pub mod events;
 pub mod errors;
 pub mod ser;
+pub mod message_signing;
 
 pub(crate) mod byte_utils;
 pub(crate) mod chacha20;
+#[cfg(feature = "fuzztarget")]
+pub mod zbase32;
+#[cfg(not(feature = "fuzztarget"))]
+pub(crate) mod zbase32;
 #[cfg(not(feature = "fuzztarget"))]
 pub(crate) mod poly1305;
 pub(crate) mod chacha20poly1305rfc;