mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
7c8dd7ee42
commit
c1a166daa7
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue