ownerEntropyNoLotSeq static method
Generate owner entropy without lot and sequence numbers.
Generates owner entropy without including lot and sequence numbers. This method is used when BIP38 does not require lot and sequence numbers.
- Returns: A List
Implementation
static List<int> ownerEntropyNoLotSeq() {
final ownerSalt =
QuickCrypto.generateRandom(Bip38EcConst.ownerSaltNoLotSeqByteLen);
return ownerSalt;
}