Trait paillier::traits::Decrypt

source ·
pub trait Decrypt<DK, CT, PT> {
    fn decrypt(ek: &DK, c: CT) -> PT;
}
Expand description

Decryption of ciphertext.

Required Methods

Decrypt ciphertext c using key dk into a plaintext.

Implementors

TODO

Efficient decryption using CRT based on Paillier99, section 7

TODO

Efficient decryption using CRT based on Paillier99, section 7