util.sasl.scram: Add support for SCRAM-SHA-256

This commit is contained in:
Kim Alvefur 2019-01-13 14:02:29 +01:00
parent 73acfb61b4
commit 49e8cbabff

View file

@ -263,6 +263,7 @@ local function init(registerMechanism)
end
registerSCRAMMechanism("SHA-1", hashes.sha1, hashes.hmac_sha1, hashes.pbkdf2_hmac_sha1);
registerSCRAMMechanism("SHA-256", hashes.sha256, hashes.hmac_sha256, hashes.pbkdf2_hmac_sha256);
end
return {