Merge 0.10->trunk
[prosody.git] / util / hmac.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 Waqas Hussain
4 --
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9 -- COMPAT: Only for external pre-0.9 modules
10
11 local hashes = require "util.hashes"
12
13 return { md5 = hashes.hmac_md5,
14          sha1 = hashes.hmac_sha1,
15          sha256 = hashes.hmac_sha256 };