Salt passwords so that two users with the same password will have
different password hashes in the database.
This commit is contained in:
parent
0a8c26e596
commit
c2b377efac
2 changed files with 12 additions and 3 deletions
|
@ -1,6 +1,5 @@
|
|||
class User < ActiveRecord::Base
|
||||
require 'xml/libxml'
|
||||
require 'digest/md5'
|
||||
|
||||
has_many :traces
|
||||
has_many :diary_entries, :order => 'created_at DESC'
|
||||
|
@ -25,13 +24,16 @@ class User < ActiveRecord::Base
|
|||
end
|
||||
|
||||
def encrypt_password
|
||||
self.pass_crypt = Digest::MD5.hexdigest(pass_crypt) unless pass_crypt_confirmation.nil?
|
||||
if pass_crypt_confirmation
|
||||
self.pass_salt = OSM::make_token(8)
|
||||
self.pass_crypt = OSM::encrypt_password(pass_crypt, pass_salt)
|
||||
end
|
||||
end
|
||||
|
||||
def self.authenticate(options)
|
||||
if options[:username] and options[:password]
|
||||
user = find(:first, :conditions => ["email = ? OR display_name = ?", options[:username], options[:username]])
|
||||
user = nil unless user.pass_crypt == Digest::MD5.hexdigest(options[:password])
|
||||
user = nil unless user.pass_crypt == OSM::encrypt_password(options[:password], user.pass_salt)
|
||||
elsif options[:token]
|
||||
token = UserToken.find(:first, :include => :user, :conditions => ["user_tokens.token = ?", options[:token]])
|
||||
user = token.user if token
|
||||
|
|
|
@ -12,6 +12,7 @@ module OSM
|
|||
require 'rexml/parsers/sax2parser'
|
||||
require 'rexml/text'
|
||||
require 'xml/libxml'
|
||||
require 'digest/md5'
|
||||
require 'RMagick'
|
||||
|
||||
class Mercator
|
||||
|
@ -403,4 +404,10 @@ module OSM
|
|||
|
||||
return token
|
||||
end
|
||||
|
||||
# Return an encrypted version of a password
|
||||
def self.encrypt_password(password, salt)
|
||||
return Digest::MD5.hexdigest(password) if salt.nil?
|
||||
return Digest::MD5.hexdigest(salt + password)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue