What's the best way to hash a url in ruby? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T11:28:25Z http://stackoverflow.com/feeds/question/67890 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/67890/whats-the-best-way-to-hash-a-url-in-ruby 3 What's the best way to hash a url in ruby? Jason Butler 2008-09-15T23:18:36Z 2008-09-16T02:38:13Z <p>I'm writing a web app that points to external links. I'm looking to create a non-sequential, non-guessable id for each document that I can use in the URL. I did the obvious thing: treating the url as a string and str#crypt on it, but that seems to choke on any non-alphanumberic characters, like the slashes, dots and underscores.</p> <p>Any suggestions on the best way to solve this problem?</p> <p>Thanks!</p> http://stackoverflow.com/questions/67890/whats-the-best-way-to-hash-a-url-in-ruby/67900#67900 0 Answer by Will J for What's the best way to hash a url in ruby? Will J 2008-09-15T23:21:34Z 2008-09-15T23:21:34Z <p>Use <a href="http://ruby-doc.org/stdlib/libdoc/digest/rdoc/index.html" rel="nofollow">Digest::MD5</a> from Ruby's standard library:</p> <pre><code>Digest::MD5.hexdigest(my_url) </code></pre> http://stackoverflow.com/questions/67890/whats-the-best-way-to-hash-a-url-in-ruby/68028#68028 8 Answer by manveru for What's the best way to hash a url in ruby? manveru 2008-09-15T23:49:00Z 2008-09-15T23:49:00Z <p>Depending on how long a string you would like you can use a few alternatives:</p> <pre><code>require 'digest' Digest.hexencode('http://foo-bar.com/yay/?foo=bar&amp;a=22') # "687474703a2f2f666f6f2d6261722e636f6d2f7961792f3f666f6f3d62617226613d3232" require 'digest/md5' Digest::MD5.hexdigest('http://foo-bar.com/yay/?foo=bar&amp;a=22') # "43facc5eb5ce09fd41a6b55dba3fe2fe" require 'digest/sha1' Digest::SHA1.hexdigest('http://foo-bar.com/yay/?foo=bar&amp;a=22') # "2aba83b05dc9c2d9db7e5d34e69787d0a5e28fc5" require 'digest/sha2' Digest::SHA2.hexdigest('http://foo-bar.com/yay/?foo=bar&amp;a=22') # "e78f3d17c1c0f8d8c4f6bd91f175287516ecf78a4027d627ebcacfca822574b2" </code></pre> <p>Note that this won't be unguessable, you may have to combine it with some other (secret but static) data to salt the string:</p> <pre><code>salt = 'foobar' Digest::SHA1.hexdigest(salt + 'http://foo-bar.com/yay/?foo=bar&amp;a=22') # "dbf43aff5e808ae471aa1893c6ec992088219bbb" </code></pre> <p>Now it becomes much harder to generate this hash for someone who doesn't know the original content and has no access to your source.</p> http://stackoverflow.com/questions/67890/whats-the-best-way-to-hash-a-url-in-ruby/68954#68954 0 Answer by webmat for What's the best way to hash a url in ruby? webmat 2008-09-16T02:38:13Z 2008-09-16T02:38:13Z <p>I would also suggest looking at the different algorithms in the digest namespace. To make it harder to guess, rather than (or in addition to) salting with a secret passphrase, you can also use a precise dump of the time:</p> <pre><code>require 'digest/md5' def hash_url(url) Digest::MD5.hexdigest("#{Time.now.to_f}--#{url}") end </code></pre> <p>Since the result of any hashing algorithm is not guaranteed to be unique, don't forget to check for the uniqueness of your result against previously generated hashes before assuming that your hash is usable. The use of Time.now makes the retry trivial to implement, since you only have to call until a unique hash is generated.</p>