Bip32SigningKey constructor

Bip32SigningKey(
  1. Uint8List secretBytes, {
  2. int depth = 0,
})

Throws Error as it is very dangerous to have non prune-to-buffered bytes.

Implementation

Bip32SigningKey(Uint8List secretBytes, {int depth = 0})
    : this.normalizeBytes(validateKeyBits(secretBytes), depth: depth);