ownerEntropyNoLotSeq static method

List<int> ownerEntropyNoLotSeq()

Generate owner entropy without lot and sequence numbers.

Implementation

static List<int> ownerEntropyNoLotSeq() {
  final ownerSalt = QuickCrypto.generateRandom(
    Bip38EcConst.ownerSaltNoLotSeqByteLen,
  );
  return ownerSalt;
}