Struct iop_keyvault::Bip32[][src]

pub struct Bip32;

Entry point to generate extended private keys in a hierarchical deterministic wallet starting from a seed based on the BIP-0032 standard (and the SLIP-0010 for crypto suites other than Secp256k1).

Implementations

impl Bip32[src]

pub fn master<C: KeyDerivationCrypto>(
    &self,
    seed: &Seed,
    subtree: &'static dyn Subtree<Suite = C>
) -> Bip32Node<C>
[src]

Calculates the master extended private key based on the crypto suite used by a given subtree.

Trait Implementations

impl Clone for Bip32[src]

impl Debug for Bip32[src]

Auto Trait Implementations

impl RefUnwindSafe for Bip32

impl Send for Bip32

impl Sync for Bip32

impl Unpin for Bip32

impl UnwindSafe for Bip32

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, 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,