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 | 06779d75b8e78feb8fe6c477c4dc811a8808642c (patch) | |
tree | 692cedbdcef4883e617b5b95ca7fe06f04738197 /util/sasl | |
parent | 5c2e796bd4325ed68d73d7e856f2ba15160805ce (diff) | |
download | prosody-06779d75b8e78feb8fe6c477c4dc811a8808642c.tar.gz prosody-06779d75b8e78feb8fe6c477c4dc811a8808642c.zip |
util.hmac, util.hashes: Implement HMAC functions in C, and move to util.hashes
Diffstat (limited to 'util/sasl')
-rw-r--r-- | util/sasl/scram.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sasl/scram.lua b/util/sasl/scram.lua index d0e8987c..1ba12460 100644 --- a/util/sasl/scram.lua +++ b/util/sasl/scram.lua @@ -15,7 +15,7 @@ local s_match = string.match; local type = type local string = string local base64 = require "util.encodings".base64; -local hmac_sha1 = require "util.hmac".sha1; +local hmac_sha1 = require "util.hashes".hmac_sha1; local sha1 = require "util.hashes".sha1; local generate_uuid = require "util.uuid".generate; local saslprep = require "util.encodings".stringprep.saslprep; |