Software /
code /
prosody
Diff
util/sasl/scram.lua @ 5537:15464633d8fb
util.hmac, util.hashes: Implement HMAC functions in C, and move to util.hashes
author | Florian Zeitz <florob@babelmonkeys.de> |
---|---|
date | Sat, 27 Apr 2013 17:01:31 +0200 |
parent | 5301:6279caf921f1 |
child | 5538:62089c9c142d |
line wrap: on
line diff
--- a/util/sasl/scram.lua Sat Apr 27 22:46:01 2013 +0200 +++ b/util/sasl/scram.lua Sat Apr 27 17:01:31 2013 +0200 @@ -15,7 +15,7 @@ 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;