Skip to main content

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#![feature(adt_const_params)]
7#![forbid(unsafe_code)]
8
9pub mod errors;
10pub mod key_material;
11pub mod traits;