fips205-source/src/traits.rs

5 lines
66 B
Rust
Raw Normal View History

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