kyber-rs 0.1.0-alpha.9

A toolbox of advanced cryptographic primitives for Rust
Documentation
1
2
3
4
5
6
7
8
9
use super::SuiteEd25519;
use crate::util::test;

impl test::Suite for SuiteEd25519 {}

#[test]
fn test_suite() {
    test::suite_test(SuiteEd25519::new_blake3_sha256_ed25519()).unwrap()
}