aboutsummaryrefslogtreecommitdiffstats
path: root/util/sasl.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-04-14 16:51:24 +0200
committerKim Alvefur <zash@zash.se>2020-04-14 16:51:24 +0200
commit44ed7a0e21e7c4a3380cb97be671f12a4b40f8d5 (patch)
tree5864cfa6ba4c63825782b45c0faed0d18ddff4de /util/sasl.lua
parentff7f920156cf636863eae6eecf1c5d1171042557 (diff)
downloadprosody-44ed7a0e21e7c4a3380cb97be671f12a4b40f8d5.tar.gz
prosody-44ed7a0e21e7c4a3380cb97be671f12a4b40f8d5.zip
util.sasl.digest-md5: Remove, obsolete since 2011
RFC 6331 lists several problems with this outdated authentication mechanism. The code here was also completely ignored by lint checks and has probably not been used for a long time, as it is incompatible with SCRAM-hashed password storage.
Diffstat (limited to 'util/sasl.lua')
-rw-r--r--util/sasl.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/util/sasl.lua b/util/sasl.lua
index 50851405..fc2abdf3 100644
--- a/util/sasl.lua
+++ b/util/sasl.lua
@@ -134,7 +134,6 @@ end
-- load the mechanisms
require "util.sasl.plain" .init(registerMechanism);
-require "util.sasl.digest-md5".init(registerMechanism);
require "util.sasl.anonymous" .init(registerMechanism);
require "util.sasl.scram" .init(registerMechanism);
require "util.sasl.external" .init(registerMechanism);