fips205-source/src/traits.rs
2024-01-12 17:22:21 -06:00

4 lines
66 B
Rust

pub trait PK {
type Seed;
fn seed(&self) -> Self::Seed;
}