clear_on_drop 0.1.0

Helpers for clearing sensitive data on the stack and heap
Documentation
1
2
3
4
5
6
7
extern crate gcc;

fn main() {
    if !cfg!(feature = "no_cc") {
        gcc::compile_library("libclear_on_drop.a", &["src/hide.c"]);
    }
}