Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

IS there a one way encryption that can take a string of any length and produce a sub-10-character hash? I want to produce reasonably unique ID's but based on message contents, rather than randomly.

I can live with constraining the messages to integer values, though, if arbitrary-length strings are impossible. However, the hash must not be similar for two consecutive integers, in that case.

share|improve this question
That's called a hash. It won't be unique. – SLaks Dec 30 '10 at 23:35
Edited the question, hopefully. Thanks. – bvukelic Dec 30 '10 at 23:41

2 Answers

up vote 8 down vote accepted

You can use any commonly available hash algorithm (eg. SHA-1), which will give you a slightly longer result than what you need. Simply truncate the result to the desired length, which may be good enough.

For example, in Python:

>>> import hashlib
>>> hash = hashlib.sha1("my message".encode("UTF-8")).hexdigest()
>>> hash
'104ab42f1193c336aa2cf08a2c946d5c6fd0fcdb'
>>> hash[:10]
'104ab42f11'
share|improve this answer
Hm, I wasn't aware SHA hexdigests could be truncated. – bvukelic Dec 30 '10 at 23:47
Any reasonable hash function can be truncated. – GregS Dec 31 '10 at 0:48
Thanks for the tip. – bvukelic Dec 31 '10 at 1:02
1  
wouldn't this rise the risk of collision to a much higher extent? – kelmer Apr 30 at 9:39

You need to hash the contents to come up with a digest. There are many hashes available but 10-characters is pretty small for the result set. Way back, people used CRC-32, which produces a 33-bit hash (basically 4 characters plus one bit). There is also CRC-64 which produces a 65-bit hash. MD5, which produces a 128-bit hash (16 bytes/characters) is considered broken for cryptographic purposes because two messages can can be found which have the same hash. It should go without saying that any time you create a 16-byte digest out of an arbitrary length message you're going to end up with duplicates. The shorter the digest, the greater the risk of collisions.

However, your concern that the hash not be similar for two consecutive messages (whether integers or not) should be true with all hashes. Even a single bit change in the original message should produce a vastly different resulting digest.

So, using something like CRC-64 (and base-64'ing the result) should get you in the neighborhood you're looking for.

share|improve this answer
Does CRC'ing a SHA-1 hash and then base-64'ing the result make the resulting ID more resistant to collision? – bvukelic Dec 30 '10 at 23:58
1  
Not in the slightest. – GregS Dec 31 '10 at 0:48
"However, your concern that the hash not be similar for two consecutive messages [...] should be true with all hashes." -- That's not necessarily true. For example, for hash functions which are used for clustering or clone detection, the exact opposite is true, actually: you want similar documents to yield similar (or even the same) hash values. A well-known example of a hash algorithm that is specifically designed to yield identical values for similar input is Soundex. – Jörg W Mittag Dec 31 '10 at 1:08
I am using the hashes for authenticating the signature of the message. So basically, for a known message, and specified signature, the hash must be correct. I don't care if there would be a small percentage of false positives, though. It's totally accceptable. I currently use the truncated SHA-512 hash compressed with base62 (something I whipped up quickly) for convenience. – bvukelic Jan 2 '11 at 23:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.