quantum_cryptographic_toolkit 0.2.0

A toolkit for developing, testing, and deploying quantum-resistant cryptographic algorithms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use quantum_cryptographic_toolkit::core::CryptoToolkit;
use quantum_cryptographic_toolkit::example_function;

fn main() {
    println!("{}", example_function());

    let toolkit = CryptoToolkit::default();

    toolkit.run_algorithm_demo();
    toolkit.profile_algorithms();
    toolkit.profile_new_algorithm();
}