update cargo to include ed25519_dalek

This commit is contained in:
Sam Kim 2021-10-12 10:38:31 -04:00 committed by Michael Vines
parent a368adcd30
commit 0cc717340c
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ impl ElGamal {
pub fn from_signing_key(signing_key: &SigningKey, label: &'static [u8]) -> Self {
let secret = ElGamalSecretKey::new(signing_key, label);
let public = ElGamalPubkey::new(&secret);
Self {secret, public}
Self { secret, public }
}
/// On input a public key and a message to be encrypted, the function