Bip32KeyTree mixin
Key Tree
Each leaf node in the tree corresponds to an actual key, while the internal nodes correspond to the collections of keys that descend from them. The chain codes of the leaf nodes are ignored, and only their embedded private or public key is relevant. Because of this construction, knowing an extended private key allows reconstruction of all descendant private keys and public keys, and knowing an extended public keys allows reconstruction of all descendant non-hardened public keys Source: BIP-0032
- Implemented types
- Mixin applications
Properties
Methods
-
ckdPriv(
Bip32PrivateKey parentSecret, int index) → Bip32PrivateKey -
Private parent key to private child key
inherited
-
ckdPub(
Bip32PublicKey parentSecret, int index) → Bip32PublicKey -
Public parent key to public child key
inherited
-
doImport(
String key) → Bip32Key -
master(
Uint8List seed) → Bip32Key -
neuterPriv(
Bip32PrivateKey parentSecret) → Bip32PublicKey -
Private parent key to public Child key
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
pathToKey(
String path) → Bip32Key -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
indexToPathNotation(
int index) → String
Constants
- hardenedIndex → const int
- maxIndex → const int