memsecurity 0.2.0-alpha1

Securely hold secrets in memory and protect them against cross-protection-boundary readout via microarchitectural, via attacks on physical layout, and via coldboot attacks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![forbid(unsafe_code)]
#![forbid(missing_docs)]
#![doc = include_str!("../README.md")]

mod store;
pub use store::*;
mod keygen;
pub use keygen::*;

mod zeroizable_arrays;
pub use zeroizable_arrays::*;

mod errors;
pub use errors::*;

// TODO Test different nonces
// TODO Test different cipher and plaintext