pqc-nostd 0.1.0

PQC no_std no_alloc Kyber Dilithium embedded 100% Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use pqc_nostd::run_post;

fn main() {
    println!("Starting FIPS 140-3 POST...");
    match run_post() {
        Ok(_) => {
            println!("POST Passed! Module is Operational.");
        }
        Err(e) => {
            println!("POST Failed: {:?}", e);
            std::process::exit(1);
        }
    }
}