Fixing examples to use Sha512 with Ristretto instead of Sha256 (#122)

This commit is contained in:
Kevin Lewi
2021-01-26 13:17:15 -08:00
committed by GitHub
parent 6eeeb0db28
commit d6ace87c21
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ struct Default;
impl CipherSuite for Default {
type Group = curve25519_dalek::ristretto::RistrettoPoint;
type KeyExchange = opaque_ke::key_exchange::tripledh::TripleDH;
type Hash = sha2::Sha256;
type Hash = sha2::Sha512;
type SlowHash = opaque_ke::slow_hash::NoOpHash;
}