1 2 3 4 5 6 7 8 9 10
//! Humidor is an implementation of the Ligero ZK protocol: //! https://dl.acm.org/doi/pdf/10.1145/3133956.3134104 #![deny(missing_docs)] pub mod ligero; mod merkle; mod params; mod threshold_secret_sharing; mod util;