Qt Cryptographic Architecture
|
#include <QtCrypto>
Public Member Functions | |
PBKDF2 (const QString &algorithm=QStringLiteral("sha1"), const QString &provider=QString()) | |
![]() | |
KeyDerivationFunction (const KeyDerivationFunction &from) | |
SymmetricKey | makeKey (const SecureArray &secret, const InitializationVector &salt, unsigned int keyLength, unsigned int iterationCount) |
SymmetricKey | makeKey (const SecureArray &secret, const InitializationVector &salt, unsigned int keyLength, int msecInterval, unsigned int *iterationCount) |
KeyDerivationFunction & | operator= (const KeyDerivationFunction &from) |
![]() | |
Algorithm (const Algorithm &from) | |
void | change (Provider::Context *c) |
void | change (const QString &type, const QString &provider) |
Provider::Context * | context () |
const Provider::Context * | context () const |
Algorithm & | operator= (const Algorithm &from) |
Provider * | provider () const |
Provider::Context * | takeContext () |
QString | type () const |
Additional Inherited Members | |
![]() | |
static QString | withAlgorithm (const QString &kdfType, const QString &algType) |
![]() | |
KeyDerivationFunction (const QString &type, const QString &provider) | |
![]() | |
Algorithm () | |
Algorithm (const QString &type, const QString &provider) | |
Password based key derivation function version 2.
This class implements Password Based Key Derivation Function version 2, as specified in RFC2898, and also in PKCS#5.
|
inlineexplicit |
Standard constructor.
algorithm | the name of the hashing algorithm to use |
provider | the name of the provider to use, if available |