pub trait Rerandomize<EK, CT1, CT> {
    fn rerandomize(ek: &EK, c: CT1) -> CT;
}
Expand description

Rerandomisation of ciphertext.

Required Methods

Rerandomise ciphertext c to hide any history of which homomorphic operations were used to compute it, making it look exactly like a fresh encryption of the same plaintext.

Implementors