Software /
code /
prosody
Diff
util/sasl.lua @ 10723:144a1ee24a4e
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.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 14 Apr 2020 16:51:24 +0200 |
parent | 8555:4f0f5b49bb03 |
child | 11727:f3aee8a825cc |
line wrap: on
line diff
--- a/util/sasl.lua Mon Apr 13 16:14:39 2020 +0200 +++ b/util/sasl.lua Tue Apr 14 16:51:24 2020 +0200 @@ -134,7 +134,6 @@ -- 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);