method
get_passwd
v1_9_2_180 -
Show latest stable
- Class:
WEBrick::HTTPAuth::Htdigest
get_passwd(realm, user, reload_db)public
No documentation available.
# File lib/webrick/httpauth/htdigest.rb, line 59
def get_passwd(realm, user, reload_db)
reload() if reload_db
if hash = @digest[realm]
hash[user]
end
end