From 8122ab2b2c5d258535ad3b016b5cb0b924658f71 Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Tue, 8 May 2012 22:31:09 +0200 Subject: Use quint64 everywhere for the transform rounds number. --- src/keys/CompositeKey.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/keys/CompositeKey.h') 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 m_keys; }; -- cgit v1.2.3