mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
util.sasl.*: Add 'sasl.' prefix to module names
This commit is contained in:
parent
327a174479
commit
42e80ba893
4 changed files with 6 additions and 6 deletions
|
@ -16,7 +16,7 @@ local s_match = string.match;
|
||||||
local log = require "util.logger".init("sasl");
|
local log = require "util.logger".init("sasl");
|
||||||
local generate_uuid = require "util.uuid".generate;
|
local generate_uuid = require "util.uuid".generate;
|
||||||
|
|
||||||
module "anonymous"
|
module "sasl.anonymous"
|
||||||
|
|
||||||
--=========================
|
--=========================
|
||||||
--SASL ANONYMOUS according to RFC 4505
|
--SASL ANONYMOUS according to RFC 4505
|
||||||
|
|
|
@ -24,7 +24,7 @@ local md5 = require "util.hashes".md5;
|
||||||
local log = require "util.logger".init("sasl");
|
local log = require "util.logger".init("sasl");
|
||||||
local generate_uuid = require "util.uuid".generate;
|
local generate_uuid = require "util.uuid".generate;
|
||||||
|
|
||||||
module "digest-md5"
|
module "sasl.digest-md5"
|
||||||
|
|
||||||
--=========================
|
--=========================
|
||||||
--SASL DIGEST-MD5 according to RFC 2831
|
--SASL DIGEST-MD5 according to RFC 2831
|
||||||
|
|
|
@ -15,7 +15,7 @@ local s_match = string.match;
|
||||||
local saslprep = require "util.encodings".stringprep.saslprep;
|
local saslprep = require "util.encodings".stringprep.saslprep;
|
||||||
local log = require "util.logger".init("sasl");
|
local log = require "util.logger".init("sasl");
|
||||||
|
|
||||||
module "plain"
|
module "sasl.plain"
|
||||||
|
|
||||||
-- ================================
|
-- ================================
|
||||||
-- SASL PLAIN according to RFC 4616
|
-- SASL PLAIN according to RFC 4616
|
||||||
|
|
|
@ -24,7 +24,7 @@ local t_concat = table.concat;
|
||||||
local char = string.char;
|
local char = string.char;
|
||||||
local byte = string.byte;
|
local byte = string.byte;
|
||||||
|
|
||||||
module "scram"
|
module "sasl.scram"
|
||||||
|
|
||||||
--=========================
|
--=========================
|
||||||
--SASL SCRAM-SHA-1 according to RFC 5802
|
--SASL SCRAM-SHA-1 according to RFC 5802
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue