Bip32Ed25519 constructor
Bip32Ed25519(
- Uint8List seed
It creates a BIP32-ED25519 specific key tree from a master seed.
The master seed is an n-bit
entropy, that can come from different
sources. E.g. From some bip-0039
tool, CPRNG
etc.
The root of the tree is a valid BIP32-ED25519 master key
.
Implementation
Bip32Ed25519(Uint8List seed) {
root = master(seed);
}