ncryptf-rs 0.5.7

Secure API authentication and end to end encryption.
Documentation
1
2
3
4
5
6
7
use ncryptf::randombytes_buf;

#[test]
fn test_randombytes() {
    let bytes = randombytes_buf(32);
    assert_eq!(bytes.len(), 32);
}