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:
authorFelix Geyer <debfx@fobos.de>2012-05-09 00:31:09 +0400
committerFelix Geyer <debfx@fobos.de>2012-05-09 00:31:09 +0400
commit8122ab2b2c5d258535ad3b016b5cb0b924658f71 (patch)
treebb095afcc729b6018bbbf4d12831c511161724bf /src/keys/CompositeKey.h
parentebce183925d7d22359e48a367eaf31c14677bee3 (diff)
Use quint64 everywhere for the transform rounds number.
Diffstat (limited to 'src/keys/CompositeKey.h')
-rw-r--r--src/keys/CompositeKey.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keys/CompositeKey.h b/src/keys/CompositeKey.h
index e95d521fd..c95dcfd84 100644
--- a/src/keys/CompositeKey.h
+++ b/src/keys/CompositeKey.h
@@ -33,14 +33,14 @@ public:
CompositeKey& operator=(const CompositeKey& key);
QByteArray rawKey() const;
- QByteArray transform(const QByteArray& seed, int rounds) const;
+ QByteArray transform(const QByteArray& seed, quint64 rounds) const;
void addKey(const Key& key);
static int transformKeyBenchmark(int msec);
private:
static QByteArray transformKeyRaw(const QByteArray& key, const QByteArray& seed,
- int rounds);
+ quint64 rounds);
QList<Key*> m_keys;
};