index on bundle_api: 57e152b Adding password hashing functionality

This commit is contained in:
Kevin Lewi
2020-06-14 06:10:26 -07:00
parent 5cf29fba62
commit f030fca1cb
2 changed files with 7 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
pub trait CipherSuite {
type Aead;
type Group;
type Keypair;
}
+1
View File
@@ -369,6 +369,7 @@ mod oprf;
// do the oprf on
mod group;
pub mod slow_hash;
pub mod ciphersuite;
#[cfg(test)]
mod tests;