util.hmac: Expose hmac-sha-512 too

All these are provided by util.hashes so why not?
This commit is contained in:
Kim Alvefur 2019-04-19 12:47:49 +02:00
parent 2ab687396c
commit df0fbd0514

View file

@ -14,4 +14,5 @@ return {
md5 = hashes.hmac_md5,
sha1 = hashes.hmac_sha1,
sha256 = hashes.hmac_sha256,
sha512 = hashes.hmac_sha512,
};