Struct iop_keyvault::Bip44Key[][src]

pub struct Bip44Key<C: KeyDerivationCrypto + 'static> { /* fields omitted */ }

Represents a key with a given index used on the chain for storing balance or authenticating actions.

Implementations

impl<C: KeyDerivationCrypto + 'static> Bip44Key<C>[src]

pub fn new(
    path: Bip44KeyPath,
    network: &'static dyn Network<Suite = C>,
    node: Bip32Node<C>
) -> Self
[src]

Backdoor to mount a BIP44 key at any place in the BIP32 tree. Use only for implementing advanced or fringe non-standard use-cases.

pub fn node(&self) -> &Bip32Node<C>[src]

Accessor for the underlying BIP32 node.

pub fn bip44_path(&self) -> &Bip44KeyPath[src]

Accessor for the BIP44 path of the key.

pub fn bip32_path(&self) -> &Path[src]

Accessor for the BIP32 path of the key.

pub fn to_private_key(&self) -> C::PrivateKey[src]

Creates the private key for authenticating actions.

pub fn neuter(&self) -> Bip44PublicKey<C>[src]

Neuters the key and convert it into its public API

pub fn network(&self) -> &'static dyn Network<Suite = C>[src]

Accessor for the underlying nwtwork.

impl Bip44Key<Secp256k1>[src]

pub fn to_wif(&self) -> String[src]

Returns the private key in the Wallet Import Format with the version byte of the network.

Trait Implementations

impl<C: Clone + KeyDerivationCrypto + 'static> Clone for Bip44Key<C>[src]

impl<C: Debug + KeyDerivationCrypto + 'static> Debug for Bip44Key<C>[src]

Auto Trait Implementations

impl<C> !RefUnwindSafe for Bip44Key<C>

impl<C> !Send for Bip44Key<C>

impl<C> !Sync for Bip44Key<C>

impl<C> Unpin for Bip44Key<C> where
    <C as KeyDerivationCrypto>::ExtendedPrivateKey: Unpin

impl<C> !UnwindSafe for Bip44Key<C>

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