Enum emerald_core::keystore::Error [] [src]

pub enum Error {
    UnsupportedCipher(String),
    UnsupportedKdf(String),
    UnsupportedPrf(String),
    FailedMacValidation,
    CoreFault(Error),
    InvalidKdfDepth(String),
    InvalidCrypto(String),
}

Keystore file errors

Variants

An unsupported cipher

An unsupported key derivation function

An unsupported pseudo-random function

keccak256_mac field validation failed

Core module error wrapper

Invalid Kdf depth value

Invalid crypto type

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<Error> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more