[][src]Enum eth_keystore::KdfparamsType

pub enum KdfparamsType {
    Pbkdf2 {
        c: u32,
        dklen: u8,
        prf: String,
        salt: Vec<u8>,
    },
    Scrypt {
        dklen: u8,
        n: u32,
        p: u32,
        r: u32,
        salt: Vec<u8>,
    },
}

Defines the various parameters used in the supported KDFs.

Variants

Pbkdf2

Fields of Pbkdf2

c: u32dklen: u8prf: Stringsalt: Vec<u8>
Scrypt

Fields of Scrypt

dklen: u8n: u32p: u32r: u32salt: Vec<u8>

Trait Implementations

impl Debug for KdfparamsType[src]

impl<'de> Deserialize<'de> for KdfparamsType[src]

impl PartialEq<KdfparamsType> for KdfparamsType[src]

impl Serialize for KdfparamsType[src]

impl StructuralPartialEq for KdfparamsType[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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>,