aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorFlorian Zeitz <florob@babelmonkeys.de>2013-04-27 17:01:31 +0200
committerFlorian Zeitz <florob@babelmonkeys.de>2013-04-27 17:01:31 +0200
commit06779d75b8e78feb8fe6c477c4dc811a8808642c (patch)
tree692cedbdcef4883e617b5b95ca7fe06f04738197 /tests
parent5c2e796bd4325ed68d73d7e856f2ba15160805ce (diff)
downloadprosody-06779d75b8e78feb8fe6c477c4dc811a8808642c.tar.gz
prosody-06779d75b8e78feb8fe6c477c4dc811a8808642c.zip
util.hmac, util.hashes: Implement HMAC functions in C, and move to util.hashes
Diffstat (limited to 'tests')
-rw-r--r--tests/test_util_sasl_scram.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_util_sasl_scram.lua b/tests/test_util_sasl_scram.lua
index aeae8748..bc89829f 100644
--- a/tests/test_util_sasl_scram.lua
+++ b/tests/test_util_sasl_scram.lua
@@ -1,6 +1,6 @@
-local hmac_sha1 = require "util.hmac".sha1;
+local hmac_sha1 = require "util.hashes".hmac_sha1;
local function toHex(s)
return s and (s:gsub(".", function (c) return ("%02x"):format(c:byte()); end));
end