Salt passwords so that two users with the same password will have

different password hashes in the database.
This commit is contained in:
Tom Hughes 2007-08-14 23:25:58 +00:00
parent 0a8c26e596
commit c2b377efac
2 changed files with 12 additions and 3 deletions

View file

@ -1,6 +1,5 @@
class User < ActiveRecord::Base class User < ActiveRecord::Base
require 'xml/libxml' require 'xml/libxml'
require 'digest/md5'
has_many :traces has_many :traces
has_many :diary_entries, :order => 'created_at DESC' has_many :diary_entries, :order => 'created_at DESC'
@ -25,13 +24,16 @@ class User < ActiveRecord::Base
end end
def encrypt_password 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 end
def self.authenticate(options) def self.authenticate(options)
if options[:username] and options[:password] if options[:username] and options[:password]
user = find(:first, :conditions => ["email = ? OR display_name = ?", options[:username], options[:username]]) 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] elsif options[:token]
token = UserToken.find(:first, :include => :user, :conditions => ["user_tokens.token = ?", options[:token]]) token = UserToken.find(:first, :include => :user, :conditions => ["user_tokens.token = ?", options[:token]])
user = token.user if token user = token.user if token

View file

@ -12,6 +12,7 @@ module OSM
require 'rexml/parsers/sax2parser' require 'rexml/parsers/sax2parser'
require 'rexml/text' require 'rexml/text'
require 'xml/libxml' require 'xml/libxml'
require 'digest/md5'
require 'RMagick' require 'RMagick'
class Mercator class Mercator
@ -403,4 +404,10 @@ module OSM
return token return token
end 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 end