ferric_crypto_lib 0.2.7

A library for Ferric Crypto
Documentation
1
2
3
4
5
6
7
use crate::crypto_systems::vahf::Vahf;

#[test]
fn test_generate_keys() {
    let vahf = Vahf::new(10, 7, 21);
    dbg!(vahf);
}