Trait paillier::traits::Decryption [] [src]

pub trait Decryption<DK, CT, PT> {
    fn decrypt(ek: &DK, c: &CT) -> PT;
}

Decryption of ciphertext.

Required Methods

Decrypt ciphertext c using key dk into a plaintext.

Implementors