pub trait ParseableKey: Sized + ToPublicKey + Sealed {
    fn from_slice(sl: &[u8]) -> Result<Self, KeyParseError>;
}
Expand description

Trait for parsing keys from byte slices

Required methods

Parse a key from slice

Implementations on Foreign Types

Implementors