1 2 3 4 5 6 7 8 9 10 11 12
#![deny(unsafe_op_in_unsafe_fn)] #![cfg_attr(docsrs, feature(doc_cfg))] pub mod error; pub mod hybrid; pub mod kem; pub mod sig; #[cfg(feature = "liboqs")] pub(crate) mod ffi; pub use error::OqsError;