hashRawBytes static method

Uint8List hashRawBytes(
  1. ScryptMiningParams params
)

Computes Scrypt hash and returns raw bytes for mining operations

params - Mining parameters Returns the raw hash bytes

Implementation

static Uint8List hashRawBytes(ScryptMiningParams params) {
  return _deriveKey(params);
}