aboutsummaryrefslogtreecommitdiffstats
path: root/util/sasl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-10-06 23:17:05 +0200
committerKim Alvefur <zash@zash.se>2013-10-06 23:17:05 +0200
commit8f5b133c60ed0064a081a8222a110f4fb09a73db (patch)
tree4325871ee224baa441568dddd117e40d3fb6eb9b /util/sasl
parentfa21be14b2c444aa7848c401e2be40bdd101e67a (diff)
downloadprosody-8f5b133c60ed0064a081a8222a110f4fb09a73db.tar.gz
prosody-8f5b133c60ed0064a081a8222a110f4fb09a73db.zip
util.sasl.scram: Remove unused function and import
Diffstat (limited to 'util/sasl')
-rw-r--r--util/sasl/scram.lua9
1 files changed, 0 insertions, 9 deletions
diff --git a/util/sasl/scram.lua b/util/sasl/scram.lua
index 9dd7fdf8..d89eb872 100644
--- a/util/sasl/scram.lua
+++ b/util/sasl/scram.lua
@@ -13,7 +13,6 @@
local s_match = string.match;
local type = type
-local tostring = tostring;
local base64 = require "util.encodings".base64;
local hmac_sha1 = require "util.hashes".hmac_sha1;
local sha1 = require "util.hashes".sha1;
@@ -47,14 +46,6 @@ Supported Channel Binding Backends
local default_i = 4096
-local function bp( b )
- local result = ""
- for i=1, b:len() do
- result = result.."\\"..b:byte(i)
- end
- return result
-end
-
local xor_map = {0;1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;1;0;3;2;5;4;7;6;9;8;11;10;13;12;15;14;2;3;0;1;6;7;4;5;10;11;8;9;14;15;12;13;3;2;1;0;7;6;5;4;11;10;9;8;15;14;13;12;4;5;6;7;0;1;2;3;12;13;14;15;8;9;10;11;5;4;7;6;1;0;3;2;13;12;15;14;9;8;11;10;6;7;4;5;2;3;0;1;14;15;12;13;10;11;8;9;7;6;5;4;3;2;1;0;15;14;13;12;11;10;9;8;8;9;10;11;12;13;14;15;0;1;2;3;4;5;6;7;9;8;11;10;13;12;15;14;1;0;3;2;5;4;7;6;10;11;8;9;14;15;12;13;2;3;0;1;6;7;4;5;11;10;9;8;15;14;13;12;3;2;1;0;7;6;5;4;12;13;14;15;8;9;10;11;4;5;6;7;0;1;2;3;13;12;15;14;9;8;11;10;5;4;7;6;1;0;3;2;14;15;12;13;10;11;8;9;6;7;4;5;2;3;0;1;15;14;13;12;11;10;9;8;7;6;5;4;3;2;1;0;};
local result = {};