[go: up one dir, main page]

seckey 0.4.1

Use `memsec` protected secret memory.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Use [memsec](https://github.com/quininer/memsec) protected secret memory.

#![cfg_attr(feature = "place", feature(placement_new_protocol))]

extern crate memsec;

mod key;
mod bytes;
mod seckey;

pub use key::*;
pub use bytes::*;
pub use seckey::*;