get_passwd(realm, user, reload_db)
public
Retrieves a password from the database for user in realm.
If reload_db is true the database will be reloaded first.
Show source
def get_passwd(realm, user, reload_db)
reload() if reload_db
if hash = @digest[realm]
hash[user]
end
end