updateInt method
Implementation
void updateInt(int x) {
Uint8List buf = Uint8List(4);
ByteData.view(buf.buffer).setUint32(0, x, Endian.big);
digest.update(buf, 0, buf.length);
}
void updateInt(int x) {
Uint8List buf = Uint8List(4);
ByteData.view(buf.buffer).setUint32(0, x, Endian.big);
digest.update(buf, 0, buf.length);
}