projects
/
rails.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Increase password stretching to 10000 interations
[rails.git]
/
lib
/
password_hash.rb
diff --git
a/lib/password_hash.rb
b/lib/password_hash.rb
index 4faac4da858ac2c7fbcd997cb91d9a0079b7ed92..c65df2c4fd7fc070496cf8dac2c5851e3e12f25a 100644
(file)
--- a/
lib/password_hash.rb
+++ b/
lib/password_hash.rb
@@
-6,7
+6,7
@@
require "digest/md5"
module PasswordHash
SALT_BYTE_SIZE = 32
HASH_BYTE_SIZE = 32
- PBKDF2_ITERATIONS = 1000
+ PBKDF2_ITERATIONS = 1000
0
DIGEST_ALGORITHM = "sha512".freeze
def self.create(password)