Object
Turns your raw password into a Sha256 hash.
# File lib/authlogic/crypto_providers/sha256.rb, line 37 def encrypt(*tokens) digest = tokens.flatten.join(join_token) stretches.times { digest = Digest::SHA256.hexdigest(digest) } digest end
Generated with the Darkfish Rdoc Generator 2.