secretmangle 0.3.0

A library for mangling sensitive data in memory with a random key.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(maybe_uninit_as_bytes, box_vec_non_null, new_zeroed_alloc, box_as_ptr)]
#![feature(clone_to_uninit)]

#[cfg(any(target_arch = "x86_64", target_arch = "aarch64"))]
pub use arbitrary::MangledBoxArbitrary;
#[cfg(any(target_arch = "x86_64", target_arch = "aarch64"))]
pub mod arbitrary;

pub use nouninit::MangledBox;
pub mod nouninit;

pub use option::MangledOption;
pub mod option;