Bip32Ed25519.seed constructor

Bip32Ed25519.seed(
  1. String masterSeedHex
)

It creates a BIP32-ED25519 specific key tree from a hex string representation of the master seed, which is a hex string representation of an n-bit length 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.seed(String masterSeedHex) {
  root = master(Base16Encoder.instance.decode(masterSeedHex));
}