[][src]Enum casper_node::crypto::Error

pub enum Error {
    AsymmetricKey(String),
    FromHex(FromHexError),
    SecretKeyLoad(ReadFileError),
    PublicKeyLoad(ReadFileError),
    FromBase64(DecodeError),
    FromPem(String),
    FromDer(Error),
    SecretKeySave(WriteFileError),
    PublicKeySave(WriteFileError),
    System(String),
}

Cryptographic errors.

Variants

AsymmetricKey(String)

Error resulting from creating or using asymmetric key types.

FromHex(FromHexError)

Error resulting when decoding a type from a hex-encoded representation.

SecretKeyLoad(ReadFileError)

Error trying to read a secret key.

PublicKeyLoad(ReadFileError)

Error trying to read a public key.

FromBase64(DecodeError)

Error resulting when decoding a type from a base64 representation.

FromPem(String)

Pem format error.

FromDer(Error)

DER format error.

SecretKeySave(WriteFileError)

Error trying to write a secret key.

PublicKeySave(WriteFileError)

Error trying to write a public key.

System(String)

Error trying to manipulate the system key.

Trait Implementations

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

impl From<DecodeError> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<FromHexError> for Error[src]

impl From<PemError> for Error[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]