mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.hashes: Correct argument order
This commit is contained in:
parent
bb9aa809b1
commit
22ad7256ba
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue