Tagged Questions
0
votes
5answers
212 views
Cumulative Hashes
I've read before here on SO that there are some hash algorithms (I think one of those is adler32) that support the following property:
adler32('abc'); // 123
adler32('def'); // 456
adler32('abcdef'); ...