For my program I am looking for a fast method to compute a unique identifier.
I explain : For comparing images I uses the MD5 but it is slow.
I thought to CRC32/64 to replace it but I don't think that the result could really be unique. It is not its goal.
What do I have to use. Speed is a priority. Actualy I compute the MD5 on the image bits and I make a MD5 of the whole file.
I could use this library
http://www.saphir2.com/sphlib/ but replacing a slow algo by an other slow one is not a good idea.
If ther is no quick hash function I accept cryptographic function, there is no security question. Perhaps a XOR?
I need your advice.
@+