QCA::PBKDF1
QCA::PBKDF1 Class Reference
#include <QtCrypto>
Inheritance diagram for QCA::PBKDF1:

Public Member Functions | |
| PBKDF1 (const QString &algorithm=QStringLiteral("sha1"), const QString &provider=QString()) | |
Public Member Functions inherited from QCA::KeyDerivationFunction | |
| KeyDerivationFunction (const KeyDerivationFunction &from) | |
| SymmetricKey | makeKey (const SecureArray &secret, const InitializationVector &salt, unsigned int keyLength, int msecInterval, unsigned int *iterationCount) |
| SymmetricKey | makeKey (const SecureArray &secret, const InitializationVector &salt, unsigned int keyLength, unsigned int iterationCount) |
| KeyDerivationFunction & | operator= (const KeyDerivationFunction &from) |
Public Member Functions inherited from QCA::Algorithm | |
| Algorithm (const Algorithm &from) | |
| void | change (const QString &type, const QString &provider) |
| void | change (Provider::Context *c) |
| 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 Public Member Functions inherited from QCA::KeyDerivationFunction | |
| static QString | withAlgorithm (const QString &kdfType, const QString &algType) |
Protected Member Functions inherited from QCA::KeyDerivationFunction | |
| KeyDerivationFunction (const QString &type, const QString &provider) | |
Protected Member Functions inherited from QCA::Algorithm | |
| Algorithm () | |
| Algorithm (const QString &type, const QString &provider) | |
Detailed Description
Password based key derivation function version 1.
This class implements Password Based Key Derivation Function version 1, as specified in RFC2898, and also in PKCS#5.
Definition at line 1049 of file qca_basic.h.
Constructor & Destructor Documentation
◆ PBKDF1()
|
inlineexplicit |
Standard constructor.
- Parameters
-
algorithm the name of the hashing algorithm to use provider the name of the provider to use, if available
Definition at line 1058 of file qca_basic.h.
The documentation for this class was generated from the following file:
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri May 2 2025 12:01:48 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri May 2 2025 12:01:48 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.
Public Member Functions inherited from