[][src]Struct solana_libra_nextgen_crypto::slip0010::Slip0010

pub struct Slip0010 {}

SLIP-0010 structure.

Methods

impl Slip0010[src]

pub fn generate_master(seed: &[u8]) -> Result<ExtendedPrivKey, Slip0010Error>[src]

Generate master key from seed.

pub fn derive_child_key(
    parent_key: ExtendedPrivKey,
    child_number: u32
) -> Result<ExtendedPrivKey, Slip0010Error>
[src]

Generate a child private key.

pub fn is_valid_path(path: &str) -> bool[src]

Match a valid path of the form "m/A/B.."; each sub-path after m is smaller than 2147483648.

pub fn derive_from_path(
    path: &str,
    seed: &[u8]
) -> Result<ExtendedPrivKey, Slip0010Error>
[src]

Derive a key from a path and a seed.

Auto Trait Implementations

Blanket Implementations

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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