util.sasl.scram: Add 'tls-exporter' as recognised channel binding method

The last missing piece of #1760, otherwise SCRAM-SHA-*-PLUS is not
actually advertised.
This commit is contained in:
Kim Alvefur 2022-07-27 00:32:04 +02:00
parent 7c8dd7ee42
commit c1a166daa7

View file

@ -240,7 +240,7 @@ local function init(registerMechanism)
-- register channel binding equivalent
registerMechanism("SCRAM-"..hash_name.."-PLUS",
{"plain", "scram_"..(hashprep(hash_name))},
scram_gen(hash_name:lower(), hash, hmac_hash, get_auth_db, true), {"tls-unique"});
scram_gen(hash_name:lower(), hash, hmac_hash, get_auth_db, true), {"tls-unique", "tls-exporter"});
end
registerSCRAMMechanism("SHA-1", hashes.sha1, hashes.hmac_sha1, hashes.pbkdf2_hmac_sha1);