pub trait FromMagicPublicKey {
    fn from_magic_public_key(magic_public_key: &str) -> Result<Self, KeyError>
    where
        Self: Sized
; }
Expand description

Helper trait to add functionality to Rsa types

Required Methods

Parse a type from a magic-public-key formatted string

Implementations on Foreign Types

Implementors