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 30702dcdee
commit ee6a13ef6f
2 changed files with 3 additions and 1 deletions

View File

@ -14,6 +14,8 @@ bytemuck = { version = "1.7.2", features = ["derive"] }
num-derive = "0.3"
num-traits = "0.2"
solana-program = "=1.7.15"
solana-sdk = "=1.7.15"
ed25519-dalek = { version = "=1.0.1" }
[target.'cfg(not(target_arch = "bpf"))'.dependencies]
arrayref = "0.3.6"

View File

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