libslug 0.9.1

A Rust Library For Cryptography Intended For Slug20 That Supports X59 Certificate Format and Post-Quantum Cryptography
Documentation
1
2
3
4
5
6
7
8
use libslug::slugcrypt::internals::csprng::SlugCSPRNG;


// Uses Argon2id and ChaCha20RNG

fn main() {
    let csprng: [u8; 32] = SlugCSPRNG::new("PasswordToUseToDeriveRandomness");
}