Trait ore_rs::OREEncrypt[][src]

pub trait OREEncrypt<T: ORECipher> {
    type LeftOutput;
    type FullOutput;
    fn encrypt_left(&self, cipher: &mut T) -> Result<Self::LeftOutput, OREError>;
fn encrypt(&self, input: &mut T) -> Result<Self::FullOutput, OREError>; }

Associated Types

Required methods

Implementations on Foreign Types

Implementors