pub trait CipherPlainAddition<CT, PT> {
// Required method
fn add_plain_inplace(&self, ct1: &mut CT, pt: &PT);
}Expand description
Trait for adding a plaintext to a ciphertext.
Required Methods§
Sourcefn add_plain_inplace(&self, ct1: &mut CT, pt: &PT)
fn add_plain_inplace(&self, ct1: &mut CT, pt: &PT)
Add a plaintext into a ciphertext.