diff options
author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-03 13:29:42 +0000 |
---|---|---|
committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-03 13:29:42 +0000 |
commit | 73a283ad0c00eabfb01d32153d09c866b0499cec (patch) | |
tree | 784c1a650886991445fe980a37a107accce00cbf /lib | |
parent | 6498dc0cb8ddabf5904ff71069343f1bbef113d1 (diff) | |
download | ruby-73a283ad0c00eabfb01d32153d09c866b0499cec.tar.gz ruby-73a283ad0c00eabfb01d32153d09c866b0499cec.tar.xz ruby-73a283ad0c00eabfb01d32153d09c866b0499cec.zip |
* lib/webrick/httpauth/digestauth.rb: use Base64.encode64 to
avoid warnings. [webrickja:128]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7192 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/webrick/httpauth/digestauth.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/webrick/httpauth/digestauth.rb b/lib/webrick/httpauth/digestauth.rb index 2b0660ed2..05a6f192c 100644 --- a/lib/webrick/httpauth/digestauth.rb +++ b/lib/webrick/httpauth/digestauth.rb @@ -254,7 +254,7 @@ module WEBrick def generate_next_nonce(req) now = "%012d" % req.request_time.to_i pk = hexdigest(now, @instance_key)[0,32] - nonce = encode64(now + ":" + pk).chop # it has 60 length of chars. + nonce = Base64.encode64(now + ":" + pk).chop # it has 60 length of chars. nonce end @@ -262,7 +262,7 @@ module WEBrick username = auth_req['username'] nonce = auth_req['nonce'] - pub_time, pk = decode64(nonce).split(":", 2) + pub_time, pk = Base64.decode64(nonce).split(":", 2) if (!pub_time || !pk) error("%s: empty nonce is given", username) return false |