Use ActiveSupport::SecureRandom to generate tokens (#3351).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2740 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2009-05-13 16:54:32 +00:00
parent e5ed2b0f73
commit 3e52383988
1 changed files with 1 additions and 4 deletions

View File

@ -36,9 +36,6 @@ class Token < ActiveRecord::Base
private
def self.generate_token_value
chars = ("a".."z").to_a + ("A".."Z").to_a + ("0".."9").to_a
token_value = ''
40.times { |i| token_value << chars[rand(chars.size-1)] }
token_value
ActiveSupport::SecureRandom.hex(20)
end
end