![]() |
cutelyst 5.1.0
A C++ Web Framework built on top of Qt, using the simple approach of Catalyst (Perl) framework.
|
Use password based authentication to authenticate a user. More...
#include <Cutelyst/Plugins/Authentication/credentialpassword.h>
Public Types | |
| enum | PasswordType { None , Clear , Hashed , SelfCheck } |
Public Member Functions | |
| CredentialPassword (QObject *parent=nullptr) | |
| virtual | ~CredentialPassword () override |
| AuthenticationUser | authenticate (Context *c, AuthenticationRealm *realm, const ParamsMultiMap &authinfo) final |
| QString | passwordField () const |
| QString | passwordPostSalt () const |
| QString | passwordPreSalt () const |
| PasswordType | passwordType () const |
| void | setPasswordField (const QString &fieldName) |
| void | setPasswordPostSalt (const QString &passwordPostSalt) |
| void | setPasswordPreSalt (const QString &passwordPreSalt) |
| void | setPasswordType (PasswordType type) |
| Public Member Functions inherited from Cutelyst::AuthenticationCredential | |
| AuthenticationCredential (QObject *parent=nullptr) | |
| virtual | ~AuthenticationCredential () |
Static Public Member Functions | |
| static QByteArray | createPassword (const QByteArray &password) |
| static QByteArray | createPassword (const QByteArray &password, QCryptographicHash::Algorithm method, int iterations, int saltByteSize, int hashByteSize) |
| static QString | createPassword (const QString &password) |
| static QByteArray | hmac (QCryptographicHash::Algorithm method, const QByteArray &key, const QByteArray &message) |
| static QByteArray | pbkdf2 (QCryptographicHash::Algorithm method, const QByteArray &password, const QByteArray &salt, int rounds, int keyLength) |
| static bool | validatePassword (const QByteArray &password, const QByteArray &correctHash) |
| static bool | validatePassword (const QString &password, const QString &correctHash) |
This credential provider authenticates a user with authentication information provided by for example a HTML login formular or another source for login data.
For an example implementation see Authentication overview.
Definition at line 27 of file credentialpassword.h.
The used password type.
| Enumerator | |
|---|---|
| None | Ignore password check. |
| Clear | Clear text password. |
| Hashed | Derived password hash using PBKDF2 method. |
| SelfCheck | Validate password by binding the user DN to LDAP server. |
Definition at line 35 of file credentialpassword.h.
|
explicit |
Constructs a new CredentialPassword object with the given parent.
Definition at line 19 of file credentialpassword.cpp.
References Cutelyst::AuthenticationCredential::AuthenticationCredential(), and CredentialPassword().
Referenced by CredentialPassword(), authenticate(), passwordField(), passwordPostSalt(), passwordPreSalt(), passwordType(), setPasswordField(), setPasswordPostSalt(), setPasswordPreSalt(), and setPasswordType().
|
overridevirtual |
Destroys the CredentialPassword object.
Definition at line 25 of file credentialpassword.cpp.
|
nodiscardfinalvirtual |
Tries to authenticate the user from the authinfo by searching it in the given realm. If found, the password will be checked according to the set passwordType(). On success, a not null AuthenticationUser object will be returned.
Implements Cutelyst::AuthenticationCredential.
Definition at line 30 of file credentialpassword.cpp.
References CredentialPassword(), Cutelyst::AuthenticationUser::checkPassword(), Cutelyst::AuthenticationRealm::findUser(), Cutelyst::AuthenticationUser::isNull(), and SelfCheck.
|
staticnodiscard |
Returns a derived hash from the clear text password with sensible defaults using the pbkdf2() method.
This uses SHA-512 with 10.000 iterations and 16 bytes size for salt and hash.
Definition at line 169 of file credentialpassword.cpp.
References createPassword().
|
staticnodiscard |
Returns a derived hash from the clear text password with the given method, iterations, saltByteSize and hashByteSize using the pbkdf2() method.
Definition at line 146 of file credentialpassword.cpp.
References pbkdf2().
Referenced by createPassword(), and createPassword().
|
inlinestaticnodiscard |
Returns a derived hash from the clear text password with sensible defaults using the pbkdf2() method.
This uses SHA-512 with 10.000 iterations and 16 bytes size for salt and hash.
Definition at line 187 of file credentialpassword.h.
References createPassword().
|
staticnodiscard |
Generates the Hash-based message authentication code.
Definition at line 236 of file credentialpassword.cpp.
|
nodiscard |
Returns the field to look for when authenticating the user.
Definition at line 59 of file credentialpassword.cpp.
References CredentialPassword().
|
nodiscard |
Returns the salt string to be appended to the password.
Definition at line 95 of file credentialpassword.cpp.
References CredentialPassword().
Referenced by setPasswordPostSalt().
|
nodiscard |
Returns the salt string to be prepended to the password.
Definition at line 83 of file credentialpassword.cpp.
References CredentialPassword().
Referenced by setPasswordPreSalt().
|
nodiscard |
Returns the type of password this class will be dealing with.
Definition at line 71 of file credentialpassword.cpp.
References CredentialPassword().
|
staticnodiscard |
Returns a PBKDF2 string for the given clear text password and salt using method, rounds and keyLength.
Definition at line 178 of file credentialpassword.cpp.
Referenced by createPassword(), and validatePassword().
| void CredentialPassword::setPasswordField | ( | const QString & | fieldName | ) |
Sets the field to look for when authenticating the user.
Definition at line 65 of file credentialpassword.cpp.
References CredentialPassword().
| void CredentialPassword::setPasswordPostSalt | ( | const QString & | passwordPostSalt | ) |
Sets the salt string to be appended to the password.
Definition at line 101 of file credentialpassword.cpp.
References CredentialPassword(), and passwordPostSalt().
| void CredentialPassword::setPasswordPreSalt | ( | const QString & | passwordPreSalt | ) |
Sets the salt string to be prepended to the password.
Definition at line 89 of file credentialpassword.cpp.
References CredentialPassword(), and passwordPreSalt().
| void CredentialPassword::setPasswordType | ( | PasswordType | type | ) |
Sets the type of password this class will be dealing with.
When set to PasswordType::SelfCheck, password validation is delegated to the user's realm and performed by binding as the found user DN.
Definition at line 77 of file credentialpassword.cpp.
References CredentialPassword().
|
staticnodiscard |
Validates the given password against the correctHash.
Definition at line 125 of file credentialpassword.cpp.
References pbkdf2().
Referenced by validatePassword().
|
inlinestaticnodiscard |
Validates the given password string against the correctHash string.
Definition at line 181 of file credentialpassword.h.
References validatePassword().