in lib/src/sha512_slowsinks.dart [119:125]
void _add(Uint32List word1, int offset1, Uint32List word2, int offset2,
Uint32List ret, int offsetR) {
ret[1 + offsetR] = (word1[1 + offset1] + word2[1 + offset2]);
ret[0 + offsetR] = word1[0 + offset1] +
word2[0 + offset2] +
(ret[1 + offsetR] < word1[1 + offset1] ? 1 : 0);
}