diff options
author | Florian Zeitz <florob@babelmonkeys.de> | 2013-04-27 17:01:31 +0200 |
---|---|---|
committer | Florian Zeitz <florob@babelmonkeys.de> | 2013-04-27 17:01:31 +0200 |
commit | 35586a8d643ce466639366160dacb46f3f4c7893 (patch) | |
tree | 692cedbdcef4883e617b5b95ca7fe06f04738197 /tests | |
parent | e8e2071fe741677fbbd6225cbe8e8871a179368a (diff) | |
download | prosody-35586a8d643ce466639366160dacb46f3f4c7893.tar.gz prosody-35586a8d643ce466639366160dacb46f3f4c7893.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.lua | 2 |
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 |