A PHP hash function with a long output length? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T11:23:14Zhttp://stackoverflow.com/feeds/question/295515http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/295515/a-php-hash-function-with-a-long-output-length1A PHP hash function with a long output length?Ciaran McNulty2008-11-17T12:56:01Z2009-07-24T23:01:09Z
<p>Inside my code I'm generating hashes of URLs, (which are practically of unbounded length). I'm currently using sha1(), which I know has a tiny chance of a collision, but I have up to 255 bytes to store the hash in so feel that I might as well use that available space to lower the chance of collision even further.</p>
<p>Is there either:</p>
<ol>
<li>Another PHP hash function with a longer or customisable hash length?</li>
<li>A way of using a fixed-length hash function like sha1 with a variable length input to generate a longer hash?</li>
</ol>
<p>Or, is sha1's 20-byte hash good enough for anything and I should stop worrying about it?</p>
http://stackoverflow.com/questions/295515/a-php-hash-function-with-a-long-output-length/295521#2955214Answer by Jeff Atwood for A PHP hash function with a long output length?Jeff Atwood2008-11-17T12:58:21Z2008-11-17T12:58:21Z<blockquote>
<p>Or, is sha1's 20-byte has good enough for anything and I should stop worrying about it?</p>
</blockquote>
<p>Exactly.</p>
<p>Hashtables, Pigeonholes, and Birthdays<br />
<a href="http://www.codinghorror.com/blog/archives/001014.html" rel="nofollow">http://www.codinghorror.com/blog/archives/001014.html</a></p>
http://stackoverflow.com/questions/295515/a-php-hash-function-with-a-long-output-length/295534#2955341Answer by warren for A PHP hash function with a long output length?warren2008-11-17T13:05:20Z2008-11-17T13:05:20Z<p>If you're really worried, pick a 256- or 512-bit hash (32 or 64 characters).</p>
<p>If you're really, really paranoid, add a salt.</p>
<p>If you're more paranoid than that, concatenate two hashes for a longer one, such as md5 and sha-256.</p>
http://stackoverflow.com/questions/295515/a-php-hash-function-with-a-long-output-length/295565#2955650Answer by Gareth for A PHP hash function with a long output length?Gareth2008-11-17T13:34:03Z2008-11-17T13:34:03Z<p>You could always prepend/append a sequential ID (in decimal or hex) to your existing hash?</p>
<p>Sure you wouldn't have a fixed length hash but you'd know the code was a) unique and b) non-guessable (even if someone noticed the sequential part they wouldn't know the way you were salting/hashing the rest of the code).</p>
<p>Of course if you're not trying to hide these hashes from anyone then why not simply use a sequential ID in the first place?</p>
http://stackoverflow.com/questions/295515/a-php-hash-function-with-a-long-output-length/295574#2955743Answer by PhiLho for A PHP hash function with a long output length?PhiLho2008-11-17T13:39:09Z2008-11-17T13:39:09Z<p>Let see... <a href="http://www.cryptography.com/cnews/hash.html" rel="nofollow">http://www.cryptography.com/cnews/hash.html</a></p>
<blockquote>
<p>Q: How hard would it be to find
collisions in SHA-1?<br />
A: The reported
attacks require an estimated work
factor of 2^69 (approximately 590
billion billion) hash computations</p>
</blockquote>
<p>Looks like the risk is quite low... ^_^</p>
http://stackoverflow.com/questions/295515/a-php-hash-function-with-a-long-output-length/295667#2956670Answer by tvanfosson for A PHP hash function with a long output length?tvanfosson2008-11-17T14:22:59Z2008-11-18T02:05:20Z<p>Since I don't know exactly what you are trying to do, I'll make an assumption that you don't want to enter data twice and you want the ability to detect collisions fast. In that case I propose the following algorithm in pseudocode:</p>
<pre><code>found = false
hv = hash(urlValue)
if table[hash,url] contains pair (hv,urlValue)
found = true
endif
if (not found)
insert table (hv,urlValue)
endif
</code></pre>
<p>In your database create a non-unique index on the hash column to speed up look ups. This will allow the query on (hash,url) to proceed quickly -- in the normal case you only look at one row since the hash is likely unique, yet you are really deciding to accept or deny based on the actual url. This will allow you to use a shorter hash function. Presumably you are already storing the url for later use so this will not involve any additional storage.</p>
http://stackoverflow.com/questions/295515/a-php-hash-function-with-a-long-output-length/295699#2956990Answer by nickf for A PHP hash function with a long output length?nickf2008-11-17T14:37:51Z2008-11-17T14:37:51Z<p>if you wanted to get really crazy with it, what you could do is combine the hashes of different parts of the URL.</p>
<p>Say the URL is 40 characters long - break it into 5 pieces: get the SHA1 of chars 1-8, concatenate to the SHA1 of chars 9-16, concatenate to SHA1 of 17-24... etc. In theory you'll then have 2<sup>800</sup> possibilities, and will only need to start worrying about collisions after 2<sup>(69*5)</sup> = 2<sup>345</sup> = 7.2 * 10<sup>103</sup> rows.</p>
<p>but like I said, we're heading straight into crazy town with methods like this.</p>
http://stackoverflow.com/questions/295515/a-php-hash-function-with-a-long-output-length/1180589#11805890Answer by Maria R for A PHP hash function with a long output length?Maria R2009-07-24T23:01:09Z2009-07-24T23:01:09Z<p>Well, it only makes sense if you have ashort hash key. Otherwise there is a risk of data overflow in the table.</p>