[][src]Trait gmorph::enc::Decrypt

pub trait Decrypt {
    type Output;
    fn decrypt(&self, key_pair: &KeyPair) -> Self::Output;
}

Helper trait for decrypting data

Associated Types

type Output

Loading content...

Required methods

fn decrypt(&self, key_pair: &KeyPair) -> Self::Output

Decrypts Self using key_pair and outputs data

Loading content...

Implementors

impl Decrypt for Enc[src]

type Output = u32

impl<'a> Decrypt for &'a Enc[src]

type Output = u32

Loading content...