mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.hashes: Expose sha224 and sha384 HMAC functions
For completeness and consistency with set of plain hash functions
This commit is contained in:
parent
54f8ca81f4
commit
ae14dc1220
3 changed files with 14 additions and 0 deletions
|
@ -13,6 +13,8 @@ local hashes = require "util.hashes"
|
|||
return {
|
||||
md5 = hashes.hmac_md5,
|
||||
sha1 = hashes.hmac_sha1,
|
||||
sha224 = hashes.hmac_sha224,
|
||||
sha256 = hashes.hmac_sha256,
|
||||
sha384 = hashes.hmac_sha384,
|
||||
sha512 = hashes.hmac_sha512,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue