# File lib/merb-auth-more/mixins/salted_user.rb, line 67 def encrypt_password return if password.blank? self.salt = Digest::SHA1.hexdigest("--#{Time.now.to_s}--#{Merb::Authentication::Strategies::Basic::Base.login_param}--") if new_record? self.crypted_password = encrypt(password) end