[−][src]Struct bitcoin::util::bip32::ExtendedPrivKey
Extended private key
Fields
network: NetworkThe network this key is to be used on
depth: u8How many derivations this key is from the master (which is 0)
parent_fingerprint: FingerprintFingerprint of the parent key (0 for master)
child_number: ChildNumberChild number of the key used to derive from parent (0 for master)
private_key: PrivateKeyPrivate key
chain_code: ChainCodeChain code
Implementations
impl ExtendedPrivKey[src]
pub fn new_master(
network: Network,
seed: &[u8]
) -> Result<ExtendedPrivKey, Error>[src]
network: Network,
seed: &[u8]
) -> Result<ExtendedPrivKey, Error>
Construct a new master key from a seed value
pub fn derive_priv<C: Signing, P: AsRef<[ChildNumber]>>(
&self,
secp: &Secp256k1<C>,
path: &P
) -> Result<ExtendedPrivKey, Error>[src]
&self,
secp: &Secp256k1<C>,
path: &P
) -> Result<ExtendedPrivKey, Error>
Attempts to derive an extended private key from a path.
The path argument can be both of type DerivationPath or Vec<ChildNumber>.
pub fn ckd_priv<C: Signing>(
&self,
secp: &Secp256k1<C>,
i: ChildNumber
) -> Result<ExtendedPrivKey, Error>[src]
&self,
secp: &Secp256k1<C>,
i: ChildNumber
) -> Result<ExtendedPrivKey, Error>
Private->Private child key derivation
pub fn decode(data: &[u8]) -> Result<ExtendedPrivKey, Error>[src]
Decoding extended private key from binary data according to BIP 32
pub fn encode(&self) -> [u8; 78][src]
Extended private key binary encoding according to BIP 32
pub fn identifier<C: Signing>(&self, secp: &Secp256k1<C>) -> XpubIdentifier[src]
Returns the HASH160 of the public key belonging to the xpriv
pub fn fingerprint<C: Signing>(&self, secp: &Secp256k1<C>) -> Fingerprint[src]
Returns the first four bytes of the identifier
Trait Implementations
impl Clone for ExtendedPrivKey[src]
pub fn clone(&self) -> ExtendedPrivKey[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for ExtendedPrivKey[src]
impl Debug for ExtendedPrivKey[src]
impl Display for ExtendedPrivKey[src]
impl Eq for ExtendedPrivKey[src]
impl FromStr for ExtendedPrivKey[src]
type Err = Error
The associated error which can be returned from parsing.
pub fn from_str(inp: &str) -> Result<ExtendedPrivKey, Error>[src]
impl PartialEq<ExtendedPrivKey> for ExtendedPrivKey[src]
pub fn eq(&self, other: &ExtendedPrivKey) -> bool[src]
pub fn ne(&self, other: &ExtendedPrivKey) -> bool[src]
impl StructuralEq for ExtendedPrivKey[src]
impl StructuralPartialEq for ExtendedPrivKey[src]
Auto Trait Implementations
impl RefUnwindSafe for ExtendedPrivKey[src]
impl Send for ExtendedPrivKey[src]
impl Sync for ExtendedPrivKey[src]
impl Unpin for ExtendedPrivKey[src]
impl UnwindSafe for ExtendedPrivKey[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,