DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
SHA1 Encryption In Ruby
require 'digest/sha1'
sha1 = Digest::SHA1.hexdigest('something secret')



