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 2eb326b0da
commit ecbdb6ba68
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,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