Async memory or file hashing
11 people like thisPosted: 13 years ago by Mauricio Scheffer
Generates SHA512 hash code from a string. Usually used in some kind of validity checks, e.g. check first timestamp and then check SHA-hash over id and timestamp to ensure a valid session.
4 people like thisPosted: 13 years ago by Tuomas Hietanen
An attempt to implement murmurhash version 3 in F# Original source code: https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp Original author: Austin Appleby Wikpedia link: https://en.wikipedia.org/wiki/MurmurHash
4 people like thisPosted: 7 years ago by MÃ¥rten Lindblad
A function that computes an MD5 hash from a block of bytes. MD5 isn't cryptographically secure, but it's a handy way of condensing a block of data into a short string.
20 people like thisPosted: 13 years ago by Tim Robinson
Calculate MD5 hash that can be used when interacting with a PHP-website. Note: MD5 has been cracked and shouldn't be used in new systems.
5 people like thisPosted: 8 years ago by Tuomas Hietanen