ncryptf-rs 0.5.7

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

#[test]
fn new_token() {
    let token = Token::new(0);
    assert_eq!(token.ikm.len(), 32);
}