Build Status

secrets

A library to help safely hold cryptographic secrets in memory.

Buffers allocated through this library:

Example

```rust extern crate secrets;

use secrets::Secret;

fn main() { let secret = Secret.new( /* &mut [u8] */); let slice = secret.read();

println!("{}", &*slice); } ```

License

secrets is distributed under the MIT license.

Links