hashRawBytes static method
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);
}