Trait internet2::Decrypt[][src]

pub trait Decrypt {
    type Error: Error;
    fn decrypt(
        &mut self,
        buffer: impl Borrow<[u8]>
    ) -> Result<Vec<u8>, Self::Error>; }

Associated Types

Required methods

Implementors