Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/kdf/AesKdf.h')
-rw-r--r--src/crypto/kdf/AesKdf.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/crypto/kdf/AesKdf.h b/src/crypto/kdf/AesKdf.h
index 3e2c8ada6..69c15b8af 100644
--- a/src/crypto/kdf/AesKdf.h
+++ b/src/crypto/kdf/AesKdf.h
@@ -25,6 +25,8 @@ class AesKdf: public Kdf
public:
AesKdf();
+ bool processParameters(const QVariantMap& p) override;
+ QVariantMap writeParameters() override;
bool transform(const QByteArray& raw, QByteArray& result) const override;
QSharedPointer<Kdf> clone() const override;