Commit 3e523839 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

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

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2740 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent e5ed2b0f
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment