aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2010-12-18 15:39:32 -0800
committerDavid Heinemeier Hansson <david@loudthinking.com>2010-12-18 15:39:32 -0800
commit39b5ea6e01f6fc652cc63ab4e7e701cfaa9f9405 (patch)
treea7c273e878207e74edfdb6b5f85db21c48f69e79 /activerecord
parentbcf4e4f2b02157cecc1f1727a95cdf5bfa471771 (diff)
downloadrails-39b5ea6e01f6fc652cc63ab4e7e701cfaa9f9405.tar.gz
rails-39b5ea6e01f6fc652cc63ab4e7e701cfaa9f9405.tar.bz2
rails-39b5ea6e01f6fc652cc63ab4e7e701cfaa9f9405.zip
Switch from SHA2 to BCrypt (easy Windows compatibility is coming shortly with new compiled gem)
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 0f7e65e8cd..9d22842cb3 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,6 +1,6 @@
*Rails 3.1.0 (unreleased)*
-* Added ActiveRecord::Base#has_secure_password (via ActiveModel::SecurePassword) to encapsulate dead-simple password usage with SHA2 encryption and salting [DHH]. Example:
+* Added ActiveRecord::Base#has_secure_password (via ActiveModel::SecurePassword) to encapsulate dead-simple password usage with BCrypt encryption and salting [DHH]. Example:
# Schema: User(name:string, password_digest:string, password_salt:string)
class User < ActiveRecord::Base