summaryrefslogtreecommitdiff
path: root/lib/webrick/httpauth.rb
diff options
context:
space:
mode:
authorgotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-01-02 22:31:13 +0000
committergotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-01-02 22:31:13 +0000
commit97102f6596e490ea98f0300e34c47061f1e97f85 (patch)
treebbfd2d2b9e91339cbb7a2fcfa743b432c6716313 /lib/webrick/httpauth.rb
parenta8c92267b133b6717ff3fd66d9de74d2b071c7c1 (diff)
* lib/webrick/httpauth/htpasswd.rb (WEBrick::Htpasswd#reload):
raise NotImplementedError if password is encrypted by digest algorithms. This patch is contributed by sheepman. [ruby-list:40467] * lib/webrick/httpauth/digestauth.rb (WEBrick::HTTPAuth::DigestAuth#_authenticate): fix digest calculation. This patch is contributed by sheepman. [ruby-list:40482] * lib/webrick/{httpauth.rb,httpauth/basicauth.rb,httpproxy.rb}: use pack/unpack-template char "m" instead of lib/base64.rb to do base64 encoding/decoding. fixed: [ruby-dev:25336] * test/webrick/test_httpauth.rb: new file. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7708 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/webrick/httpauth.rb')
-rw-r--r--lib/webrick/httpauth.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/webrick/httpauth.rb b/lib/webrick/httpauth.rb
index b78c40fd04..147c04021c 100644
--- a/lib/webrick/httpauth.rb
+++ b/lib/webrick/httpauth.rb
@@ -22,7 +22,7 @@ module WEBrick
user = pass = nil
if /^Basic\s+(.*)/o =~ req[req_field]
userpass = $1
- user, pass = decode64(userpass).split(":", 2)
+ user, pass = userpass.unpack("m*")[0].split(":", 2)
end
if block.call(user, pass)
req.user = user