Fawkes API
Fawkes Development Version
|
Interface for user verification. More...
#include <>>
Public Member Functions | |
virtual | ~WebUserVerifier () |
Virtual empty destructor. | |
virtual bool | verify_user (const char *user, const char *password)=0 throw () |
Verify a user. |
Interface for user verification.
Implementations of this class will verify users for access to the webserver. Note that the password might be a hash for digest authentication.
fawkes::WebUserVerifier::~WebUserVerifier | ( | ) | [virtual] |
Virtual empty destructor.
Definition at line 46 of file user_verifier.cpp.
bool fawkes::WebUserVerifier::verify_user | ( | const char * | user, |
const char * | password | ||
) | throw () [pure virtual] |
Verify a user.
Check if the passed credentials are valid.
user | user name |
password | user supplied password, might be a hash. |
Implemented in WebviewUserVerifier.