Trait paillier::traits::Decoder [] [src]

pub trait Decoder<T> {
    type Source;
    fn decode(&self, y: &Self::Source) -> T;
}

Decoding from plaintexts.

Associated Types

Required Methods

Decode Source types into T types.

Implementors