aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/secure_password.rb
Commit message (Expand)AuthorAgeFilesLines
* bcrypt will encrypt anything, so validate_presence_of would not catch nil / b...Aaron Patterson2011-04-141-1/+3
* Declaring the attr_accessor for password_confirmation is not necessaryBrian Cardarella2011-04-141-2/+1
* Override attributes_protected_by_default when has_secure_password is called.Tsutomu Kuroda2011-02-091-2/+6
* Instance methods shouldnt be added until you actually call has_secure_passwordDavid Heinemeier Hansson2010-12-291-11/+15
* Remove require AS::Concern from places where is already inSantiago Pastorino2010-12-191-1/+0
* Remove weak_passwords list and the length/strong password validator, leave th...Santiago Pastorino2010-12-191-31/+6
* Use class_attribute to ensure weak_passwords are inheritable.José Valim2010-12-191-18/+8
* Add set_weak_passwords call in alignment with set_table_name.Mikel Lindsaar2010-12-191-5/+11
* Fix incorrect docsMikel Lindsaar2010-12-191-3/+1
* Added ability to specify which passwords you want as weak passwordsMikel Lindsaar2010-12-191-6/+25
* 'unsecure' => 'insecure'José Valim2010-12-191-1/+1
* Make password messages translatable.José Valim2010-12-191-2/+2
* Add missing require and remove extra module.José Valim2010-12-191-20/+19
* Avoid warnings and fix small typo on SecurePassword.José Valim2010-12-191-3/+3
* BCrypt does its own salting, lovely!David Heinemeier Hansson2010-12-181-12/+11
* Switch from SHA2 to BCrypt (easy Windows compatibility is coming shortly with...David Heinemeier Hansson2010-12-181-7/+7
* Added ActiveRecord::Base#has_secure_password (via ActiveModel::SecurePassword...David Heinemeier Hansson2010-12-181-0/+73