Comparison

util/sasl/scram.lua @ 5836:fa8cfe830fef

util.sasl.scram: Adding reference to RFC 5929 'Channel Bindings for TLS'.
author Tobias Markmann <tm@ayena.de>
date Mon, 17 Jan 2011 16:50:21 +0100
parent 5835:a5f4de8c0b40
child 5837:574e91531994
comparison
equal deleted inserted replaced
5835:a5f4de8c0b40 5836:fa8cfe830fef
36 scram_{MECH}: 36 scram_{MECH}:
37 -- MECH being a standard hash name (like those at IANA's hash registry) with '-' replaced with '_' 37 -- MECH being a standard hash name (like those at IANA's hash registry) with '-' replaced with '_'
38 function(username, realm) 38 function(username, realm)
39 return stored_key, server_key, iteration_count, salt, state; 39 return stored_key, server_key, iteration_count, salt, state;
40 end 40 end
41
42 Supported Channel Binding Backends
43
44 'tls-unique' according to RFC 5929
41 ]] 45 ]]
42 46
43 local default_i = 4096 47 local default_i = 4096
44 48
45 local function bp( b ) 49 local function bp( b )