summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/StringCodecs')
-rw-r--r--Swiften/StringCodecs/HMACSHA1.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/Swiften/StringCodecs/HMACSHA1.cpp b/Swiften/StringCodecs/HMACSHA1.cpp
index 4ce46fc..0cea08f 100644
--- a/Swiften/StringCodecs/HMACSHA1.cpp
+++ b/Swiften/StringCodecs/HMACSHA1.cpp
@@ -20,10 +20,7 @@ ByteArray HMACSHA1::getResult(const ByteArray& key, const ByteArray& data) {
// Create the padded key
ByteArray paddedKey(key);
- paddedKey.resize(B);
- for (unsigned int i = key.getSize(); i < paddedKey.getSize(); ++i) {
- paddedKey[i] = 0x0;
- }
+ paddedKey.resize(B, 0x0);
// Create the first value
ByteArray x(paddedKey);