diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-12-28 10:22:48 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-12-28 10:22:48 -0800 |
commit | afe6e059ea216f01d160e4603116356b78df12e5 (patch) | |
tree | e01ada46a3c3b6f2e2a67a8bf4234caf6ff1f995 /actionpack | |
parent | c8dcc19cf9e40c4387bfc197bc118da16c8469c3 (diff) | |
parent | a19d0f5a66f17c356c5255c5d5930a73a25f627a (diff) | |
download | rails-afe6e059ea216f01d160e4603116356b78df12e5.tar.gz rails-afe6e059ea216f01d160e4603116356b78df12e5.tar.bz2 rails-afe6e059ea216f01d160e4603116356b78df12e5.zip |
Merge pull request #4207 from nashby/deprecate-base64-encode64s
deprecate Base64.encode64s from AS
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/metal/http_authentication.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/metal/http_authentication.rb b/actionpack/lib/action_controller/metal/http_authentication.rb index 56335a22cb..594ba7a7b8 100644 --- a/actionpack/lib/action_controller/metal/http_authentication.rb +++ b/actionpack/lib/action_controller/metal/http_authentication.rb @@ -145,7 +145,7 @@ module ActionController end def encode_credentials(user_name, password) - "Basic #{ActiveSupport::Base64.encode64s("#{user_name}:#{password}")}" + "Basic #{ActiveSupport::Base64.strict_encode64("#{user_name}:#{password}")}" end def authentication_request(controller, realm) @@ -289,7 +289,7 @@ module ActionController t = time.to_i hashed = [t, secret_key] digest = ::Digest::MD5.hexdigest(hashed.join(":")) - ActiveSupport::Base64.encode64("#{t}:#{digest}").gsub("\n", '') + ActiveSupport::Base64.strict_encode64("#{t}:#{digest}") end # Might want a shorter timeout depending on whether the request |