Remove output and message queue from HoneyBadger.

master
Andreas Fackler 7 years ago committed by Vladimir Komendantskiy
parent ec16c801ac
commit da3bc0b930
  1. 7
      mod.rs

@ -253,7 +253,12 @@ impl SecretKeyShare {
if !ct.verify() {
return None;
}
Some(DecryptionShare(ct.0.into_affine().mul((self.0).0)))
Some(self.decrypt_share_no_verify(ct))
}
/// Returns a decryption share, without validating the ciphertext.
pub fn decrypt_share_no_verify(&self, ct: &Ciphertext) -> DecryptionShare {
DecryptionShare(ct.0.into_affine().mul((self.0).0))
}
}

Loading…
Cancel
Save