Object
This class was made for the users transitioning from md5 based systems. I highly discourage using this crypto provider as it superbly inferior to your other options.
Please use any other provider offered by Authlogic.
Turns your raw password into a MD5 hash.
# File lib/authlogic/crypto_providers/md5.rb, line 21 def encrypt(*tokens) digest = tokens.flatten.join(join_token) stretches.times { digest = Digest::MD5.hexdigest(digest) } digest end
Generated with the Darkfish Rdoc Generator 2.