module Authlogic::ActsAsAuthentic::Password
This module has a lot of neat functionality. It is responsible for encrypting your password, salting it, and verifying it. It can also help you transition to a new encryption algorithm. See the Config sub module for configuration options.
Public Class Methods
included(klass)
click to toggle source
# File lib/authlogic/acts_as_authentic/password.rb, line 6 def self.included(klass) klass.class_eval do extend Config add_acts_as_authentic_module(Callbacks) add_acts_as_authentic_module(Methods) end end