util.sasl.scram: Fix old API

This function is not directly used by anything in Prosody anymore and
should be considered deprecated.
This commit is contained in:
Kim Alvefur 2019-09-29 21:12:46 +02:00
parent c12eba925b
commit a4f4107e5a

View file

@ -269,6 +269,6 @@ end
return {
get_hash = get_scram_hasher;
hashers = auth_db_getters;
getAuthenticationDatabaseSHA1 = get_scram_hasher(hashes.sha1, hashes.sha256, hashes.pbkdf2_hmac_sha1);
getAuthenticationDatabaseSHA1 = get_scram_hasher(hashes.sha1, hashes.hmac_sha1, hashes.pbkdf2_hmac_sha1); -- COMPAT
init = init;
}