Software /
code /
prosody
Comparison
util/sasl/scram.lua @ 4113:65482a852c4d
util.sasl.*: Add 'sasl.' prefix to module names
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 11 Jan 2011 05:30:55 +0000 |
parent | 4049:fe6f4a255fd8 |
child | 4204:edd7b0610c2c |
comparison
equal
deleted
inserted
replaced
4112:09f0ba0cfbfc | 4113:65482a852c4d |
---|---|
22 local log = require "util.logger".init("sasl"); | 22 local log = require "util.logger".init("sasl"); |
23 local t_concat = table.concat; | 23 local t_concat = table.concat; |
24 local char = string.char; | 24 local char = string.char; |
25 local byte = string.byte; | 25 local byte = string.byte; |
26 | 26 |
27 module "scram" | 27 module "sasl.scram" |
28 | 28 |
29 --========================= | 29 --========================= |
30 --SASL SCRAM-SHA-1 according to RFC 5802 | 30 --SASL SCRAM-SHA-1 according to RFC 5802 |
31 | 31 |
32 --[[ | 32 --[[ |