![]() |
cutelyst 5.0.1
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 } |
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. |
Definition at line 35 of file credentialpassword.h.
|
explicit |
Constructs a new CredentialPassword object with the given parent.
Definition at line 18 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 24 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 29 of file credentialpassword.cpp.
References CredentialPassword(), Cutelyst::AuthenticationRealm::findUser(), and Cutelyst::AuthenticationUser::isNull().
|
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 159 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 136 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 182 of file credentialpassword.h.
References createPassword().
|
staticnodiscard |
Generates the Hash-based message authentication code.
Definition at line 226 of file credentialpassword.cpp.
|
nodiscard |
Returns the field to look for when authenticating the user.
Definition at line 49 of file credentialpassword.cpp.
References CredentialPassword().
|
nodiscard |
Returns the salt string to be appended to the password.
Definition at line 85 of file credentialpassword.cpp.
References CredentialPassword().
Referenced by setPasswordPostSalt().
|
nodiscard |
Returns the salt string to be prepended to the password.
Definition at line 73 of file credentialpassword.cpp.
References CredentialPassword().
Referenced by setPasswordPreSalt().
|
nodiscard |
Returns the type of password this class will be dealing with.
Definition at line 61 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 168 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 55 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 91 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 79 of file credentialpassword.cpp.
References CredentialPassword(), and passwordPreSalt().
| void CredentialPassword::setPasswordType | ( | PasswordType | type | ) |
Sets the type of password this class will be dealing with.
Definition at line 67 of file credentialpassword.cpp.
References CredentialPassword().
|
staticnodiscard |
Validates the given password against the correctHash.
Definition at line 115 of file credentialpassword.cpp.
References pbkdf2().
Referenced by validatePassword().
|
inlinestaticnodiscard |
Validates the given password string against the correctHash string.
Definition at line 176 of file credentialpassword.h.
References validatePassword().