rs-crypto 0.1.0

ISAAC cipher and RSA cryptographic implementations
Documentation
1
2
3
4
5
6
7
8
fn main() {
    cc::Build::new()
        .file("csrc/rand.c")
        .include("csrc")
        .opt_level(3)
        .warnings(false)
        .compile("isaac");
}