Trait paillier::traits::Encoder [] [src]

pub trait Encoder<T> {
    type Target;
    fn encode(&self, x: &T) -> Self::Target;
}

Encoding into plaintexts.

Associated Types

Required Methods

Encode T types into Target types.

Implementors