mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.stun: Use util.strbitop
Improves performance since the whole procedure is done in C
This commit is contained in:
parent
27943c671c
commit
1f257ecbb4
1 changed files with 1 additions and 11 deletions
12
net/stun.lua
12
net/stun.lua
|
@ -3,17 +3,7 @@ local hashes = require "util.hashes";
|
||||||
local net = require "util.net";
|
local net = require "util.net";
|
||||||
local random = require "util.random";
|
local random = require "util.random";
|
||||||
local struct = require "util.struct";
|
local struct = require "util.struct";
|
||||||
|
local sxor = require"util.strbitop".sxor;
|
||||||
--- Private helpers
|
|
||||||
|
|
||||||
-- XORs a string with another string
|
|
||||||
local function sxor(x, y)
|
|
||||||
local r = {};
|
|
||||||
for i = 1, #x do
|
|
||||||
r[i] = string.char(bit32.bxor(x:byte(i), y:byte(i)));
|
|
||||||
end
|
|
||||||
return table.concat(r);
|
|
||||||
end
|
|
||||||
|
|
||||||
--- Public helpers
|
--- Public helpers
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue