|
reSIProcate/DialogUsageManager
9694
|
#include <UserProfile.hxx>

Public Member Functions | |
| DigestCredential () | |
| DigestCredential (const Data &realm, const Data &username, const Data &pwd, bool isPasswordA1Hash) | |
| DigestCredential (const Data &realm) | |
| bool | operator< (const DigestCredential &rhs) const |
Public Attributes | |
| Data | realm |
| Data | user |
| Data | password |
| bool | isPasswordA1Hash |
Definition at line 62 of file UserProfile.hxx.
| UserProfile::DigestCredential::DigestCredential | ( | ) |
Definition at line 177 of file UserProfile.cxx.
: realm(Data::Empty), user(Data::Empty), password(Data::Empty), isPasswordA1Hash(false) { }
| UserProfile::DigestCredential::DigestCredential | ( | const Data & | realm, |
| const Data & | username, | ||
| const Data & | pwd, | ||
| bool | isPasswordA1Hash | ||
| ) |
Definition at line 169 of file UserProfile.cxx.
: realm(r), user(u), password(pwd), isPasswordA1Hash(pwdA1Hash) { }
| UserProfile::DigestCredential::DigestCredential | ( | const Data & | realm | ) |
Definition at line 185 of file UserProfile.cxx.
: realm(pRealm), user(Data::Empty), password(Data::Empty), isPasswordA1Hash(false) { }
| bool UserProfile::DigestCredential::operator< | ( | const DigestCredential & | rhs | ) | const |
Definition at line 74 of file UserProfile.hxx.
Definition at line 73 of file UserProfile.hxx.
Definition at line 71 of file UserProfile.hxx.
Referenced by operator<().
Definition at line 72 of file UserProfile.hxx.
1.7.5.1