mirror of
https://github.com/saymrwulf/fips205-source.git
synced 2026-09-04 20:03:45 +00:00
4 lines
66 B
Rust
4 lines
66 B
Rust
pub trait PK {
|
|
type Seed;
|
|
fn seed(&self) -> Self::Seed;
|
|
}
|