process method
Process a whole block of data
at once, returning the result in a new byte array.
Implementation
@override
Uint8List process(Uint8List data) {
update(data, 0, data.length);
var out = Uint8List(digestSize);
var len = doFinal(out, 0);
return out.sublist(0, len);
}