master method
The default implementation of the original BIP32-ED25519's master key generation.
Implementation
@override
Bip32Key master(Uint8List seed) {
final rawMaster = PBKDF2.hmac_sha512(Uint8List(0), seed, 4096, 96);
return Bip32SigningKey.normalizeBytes(rawMaster);
}