[][src]Struct cashweb_bitcoin::bip32::ExtendedPublicKey

pub struct ExtendedPublicKey { /* fields omitted */ }

A wrapper around PublicKey to allow Hierarchical Deterministic Wallets public key derivation.

Implementations

impl ExtendedPublicKey[src]

pub fn new_master(public_key: PublicKey, chain_code: [u8; 32]) -> Self[src]

Construct a new master public key.

pub fn get_public_key(&self) -> &PublicKey[src]

Get the underlying PublicKey.

pub fn into_public_key(self) -> PublicKey[src]

Convert into the underlying PublicKey.

pub fn as_parts(&self) -> (PublicKey, [u8; 32])[src]

Convert into the PublicKey and chain code.

pub fn into_parts(self) -> (PublicKey, [u8; 32])[src]

Convert into the PublicKey and chain code.

pub fn derive_public_path<C: Verification, P>(
    &self,
    secp: &Secp256k1<C>,
    path: &P
) -> Result<ExtendedPublicKey, DeriveError> where
    &'a P: IntoIterator<Item = &'a ChildNumber>, 
[src]

Attempts to derive an ExtendedPublicKey from a path.

The path must consist of an iterable collection of ChildNumbers.

pub fn derive_public_child<C: Verification>(
    &self,
    secp: &Secp256k1<C>,
    child_number: ChildNumber
) -> Result<ExtendedPublicKey, DeriveError>
[src]

Derive the child ExtendedPublicKey from a ChildNumber.

Trait Implementations

impl Clone for ExtendedPublicKey[src]

impl Copy for ExtendedPublicKey[src]

impl Debug for ExtendedPublicKey[src]

impl Eq for ExtendedPublicKey[src]

impl PartialEq<ExtendedPublicKey> for ExtendedPublicKey[src]

impl StructuralEq for ExtendedPublicKey[src]

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

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