bouncycastle_core/lib.rs
1//! This crate defines the core traits and types used by the rest of the bc-rust.test library.
2
3// todo -- this is the goal, but first need to remove all the Vec in favour of compile-time array sizing.
4// #![no_std]
5
6#![forbid(unsafe_code)]
7#![forbid(missing_docs)]
8
9pub mod errors;
10pub mod key_material;
11pub mod suspendable_state;
12pub mod traits;