How do I create a SHA1 hash in ruby? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T07:50:35Zhttp://stackoverflow.com/feeds/question/34490http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/34490/how-do-i-create-a-sha1-hash-in-ruby3How do I create a SHA1 hash in ruby?quackingduck2008-08-29T15:49:08Z2008-08-29T16:06:28Z
<p><a href="http://en.wikipedia.org/wiki/SHA-1" rel="nofollow">SHA Hash functions</a></p>
http://stackoverflow.com/questions/34490/how-do-i-create-a-sha1-hash-in-ruby/34514#3451413Answer by devstopfix for How do I create a SHA1 hash in ruby?devstopfix2008-08-29T15:56:48Z2008-08-29T15:56:48Z<pre><code>require 'digest/sha1'
Digest::SHA1.hexdigest 'foo'
</code></pre>