Expand description
HD wallet(BIP-32) related key derivation utilities.
This crate is build upon secp256k1 crate, only provide BIP-32 related features, for signatures see the secp256k1 documentation.
ChainPath
andKeyChain
used to derive HD wallet keys.Derivation
contains key derivation info.ExtendedPrivKey
andExtendedPubKey
according to BIP-32 described represents a key that can derives child keys.KeyIndex
indicate index and type in a child key derivation (Normal key or Hardened key).- [
Error
] errors.
hdwallet
crate itself is a key derivation framework.
Check hdwallet-bitcoin
if you want to derive bitcoin keys, and you can find or submit other crypto
currencies support on hdwallet homepage.
Re-exports
pub use crate::extended_key::key_index::KeyIndex;
pub use crate::extended_key::ExtendedPrivKey;
pub use crate::extended_key::ExtendedPubKey;
pub use crate::extended_key::KeySeed;
pub use crate::key_chain::chain_path::ChainPath;
pub use crate::key_chain::chain_path::Error as ChainPathError;
pub use crate::key_chain::chain_path::SubPath;
pub use crate::key_chain::DefaultKeyChain;
pub use crate::key_chain::Derivation;
pub use crate::key_chain::KeyChain;
pub use rand_core;
pub use ring;
pub use secp256k1;