Rename hash selection enum to KeyedHash, restructure traits

This commit is contained in:
Jan Winkelmann (keks)
2025-02-24 12:42:49 +01:00
parent b94ddd980d
commit 32ae8f7051
12 changed files with 144 additions and 136 deletions

View File

@@ -1,4 +1,8 @@
mod algorithms;
mod primitives;
pub use algorithms::*;
pub use primitives::*;
mod kem;
mod keyed_hash;
pub use kem::Kem;
pub use keyed_hash::*;