diff options
author | Tobias Markmann <tm@ayena.de> | 2011-01-17 16:50:21 +0100 |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2011-01-17 16:50:21 +0100 |
commit | dd1571b3905d0c388c78920c20bbaa15c709445f (patch) | |
tree | edf2bb86730f25538d6d2cc2155911ef6f43f490 | |
parent | 9e938f0e7c47c76bef0734195c4384e1239a087b (diff) | |
download | prosody-dd1571b3905d0c388c78920c20bbaa15c709445f.tar.gz prosody-dd1571b3905d0c388c78920c20bbaa15c709445f.zip |
util.sasl.scram: Adding reference to RFC 5929 'Channel Bindings for TLS'.
-rw-r--r-- | util/sasl/scram.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/sasl/scram.lua b/util/sasl/scram.lua index 66cc941d..74854619 100644 --- a/util/sasl/scram.lua +++ b/util/sasl/scram.lua @@ -38,6 +38,10 @@ scram_{MECH}: function(username, realm) return stored_key, server_key, iteration_count, salt, state; end + +Supported Channel Binding Backends + +'tls-unique' according to RFC 5929 ]] local default_i = 4096 |