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

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Hacker <dd0t@users.sourceforge.net>2014-10-22 01:44:33 +0400
committerStefan Hacker <dd0t@users.sourceforge.net>2014-10-22 01:44:33 +0400
commitc664b98943aed13e3c0bbc2843391b5064a356a2 (patch)
tree922a6d4a949a37d2524d3e407c94b650c1f7824c /src/murmur/PBKDF2.h
parentcebcbd30048e48ffafa607ddc0920e4f9924a2e4 (diff)
Fix more coding guideline violations.
Diffstat (limited to 'src/murmur/PBKDF2.h')
-rw-r--r--src/murmur/PBKDF2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/murmur/PBKDF2.h b/src/murmur/PBKDF2.h
index 259b6fed5..481901762 100644
--- a/src/murmur/PBKDF2.h
+++ b/src/murmur/PBKDF2.h
@@ -58,8 +58,8 @@ class PBKDF2 {
/// @param iterationCount Number of PBKDF2 iterations to apply.
/// @return Hex encoded password hash of DERIVED_KEY_LENGTH octets.
///
- static QString getHash(const QString& hexSalt,
- const QString& password,
+ static QString getHash(const QString &hexSalt,
+ const QString &password,
int iterationCount);
///