diff options
author | Kim Alvefur <zash@zash.se> | 2013-08-06 14:35:03 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-08-06 14:35:03 +0200 |
commit | 132f38d70aa6187f55474b583702e57260eee311 (patch) | |
tree | 43e921f6bd3937398e258a64aa064ae01360625e /util-src | |
parent | 6b7b6e0e7b6afa7964e22a4af1bf117f17dbff9c (diff) | |
parent | a316833b30b2e58f75ca808f0006c877b52f7d01 (diff) | |
download | prosody-132f38d70aa6187f55474b583702e57260eee311.tar.gz prosody-132f38d70aa6187f55474b583702e57260eee311.zip |
Merge 0.9->trunk
Diffstat (limited to 'util-src')
-rw-r--r-- | util-src/hashes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-src/hashes.c b/util-src/hashes.c index 39737ae0..ad25c1a7 100644 --- a/util-src/hashes.c +++ b/util-src/hashes.c @@ -85,7 +85,7 @@ static void hmac(struct hash_desc *desc, const char *key, size_t key_len, if (key_len > 64) { desc->Init(desc->ctx); desc->Update(desc->ctx, key, key_len); - desc->Final(desc->ctx, hashedKey); + desc->Final(hashedKey, desc->ctx); key = (const char*)hashedKey; key_len = desc->digestLength; } |