Trait ore_rs::OREEncrypt

source ·
pub trait OREEncrypt<T: ORECipher> {
    type LeftOutput;
    type FullOutput;

    fn encrypt_left(&self, cipher: &T) -> Result<Self::LeftOutput, OREError>;
    fn encrypt(&self, input: &T) -> Result<Self::FullOutput, OREError>;
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§