fips205-source/src/traits.rs

6 lines
67 B
Rust
Raw Normal View History

2024-01-11 23:49:25 +00:00
pub trait PK {
type Seed;
fn seed(&self) -> Self::Seed;
}