zks_crypt 0.1.0

Cryptographic primitives for ZKS Protocol - post-quantum secure encryption
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(test)]
mod test_debug {
    use super::*;
    
    #[test]
    fn test_wasif_new() {
        let key = [0u8; 32];
        match WasifVernam::new(key) {
            Ok(_cipher) => println!("WasifVernam::new succeeded"),
            Err(e) => println!("WasifVernam::new failed: {:?}", e),
        }
    }
}