Returns the CRC-32 checksum of bs as a 4-byte Uint8List (big-endian).
bs
See also: getCrc32.
Uint8List getCrc32Uint8List(List<int> bs) { final hash = getCrc32(bs); return _uint32ToBytesBE(hash); }