pub trait FromBytes {
    fn from_bytes(context: &Context, bytes: &[u8]) -> Result<Self>
    where
        Self: Sized
; }
Expand description

A trait for converting data from a byte slice under a given SEAL context.

Required Methods

Deserialize an object from the given bytes using the given context.

Implementors