method
make_passwd
v1_8_6_287 -
Show latest stable
- Class:
WEBrick::HTTPAuth::DigestAuth
make_passwd(realm, user, pass)public
No documentation available.
# File lib/webrick/httpauth/digestauth.rb, line 29
def self.make_passwd(realm, user, pass)
pass ||= ""
Digest::MD5::hexdigest([user, realm, pass].join(":"))
end