zeroize_alloc

Crates.iozeroize_alloc
lib.rszeroize_alloc
version0.1.2
sourcesrc
created_at2019-10-01 02:20:02.660285
updated_at2019-10-01 02:22:37.002001
descriptionA zeroizing allocator wrapper.
homepagehttps://github.com/DR-BoneZ/zeroize-alloc-rs
repositoryhttps://github.com/DR-BoneZ/zeroize-alloc-rs
max_upload_size
id168998
size3,570
Aiden McClelland (dr-bonez)

documentation

http://docs.rs/zeroize_alloc/

README

zeroize_alloc

This crate zeros all memory before freeing it, so if you keep secrets on the heap, you can be sure they no longer exist once they are freed.

Usage

#[global_allocator]
static ALLOC: zeroize_alloc::ZeroizingAlloc<YourAllocator> = ZeroizingAlloc(YourAllocator);

If you want to use the default allocator, use std::alloc::System.

Commit count: 9

cargo fmt