util/hmac.lua
author Waqas Hussain <waqas20@gmail.com>
Tue, 01 Dec 2009 02:23:48 +0500
changeset 2268 770a75623ed7
parent 1522 569d58d21612
child 2290 ef7027a0f0c9
permissions -rw-r--r--
util.hmac: Optimized.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1522
569d58d21612 Add copyright header to those files missing one
Matthew Wild <mwild1@gmail.com>
parents: 1516
diff changeset
     1
-- Prosody IM
569d58d21612 Add copyright header to those files missing one
Matthew Wild <mwild1@gmail.com>
parents: 1516
diff changeset
     2
-- Copyright (C) 2008-2009 Matthew Wild
569d58d21612 Add copyright header to those files missing one
Matthew Wild <mwild1@gmail.com>
parents: 1516
diff changeset
     3
-- Copyright (C) 2008-2009 Waqas Hussain
569d58d21612 Add copyright header to those files missing one
Matthew Wild <mwild1@gmail.com>
parents: 1516
diff changeset
     4
-- 
569d58d21612 Add copyright header to those files missing one
Matthew Wild <mwild1@gmail.com>
parents: 1516
diff changeset
     5
-- This project is MIT/X11 licensed. Please see the
569d58d21612 Add copyright header to those files missing one
Matthew Wild <mwild1@gmail.com>
parents: 1516
diff changeset
     6
-- COPYING file in the source package for more information.
569d58d21612 Add copyright header to those files missing one
Matthew Wild <mwild1@gmail.com>
parents: 1516
diff changeset
     7
--
569d58d21612 Add copyright header to those files missing one
Matthew Wild <mwild1@gmail.com>
parents: 1516
diff changeset
     8
1456
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
     9
local hashes = require "util.hashes"
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    10
1482
9734231a569f util.hmac: Some optimisations
Matthew Wild <mwild1@gmail.com>
parents: 1481
diff changeset
    11
local s_char = string.char;
2268
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    12
local s_gsub = string.gsub;
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    13
local s_rep = string.rep;
1482
9734231a569f util.hmac: Some optimisations
Matthew Wild <mwild1@gmail.com>
parents: 1481
diff changeset
    14
1456
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    15
module "hmac"
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    16
2268
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    17
local xor_map = {0;1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;1;0;3;2;5;4;7;6;9;8;11;10;13;12;15;14;2;3;0;1;6;7;4;5;10;11;8;9;14;15;12;13;3;2;1;0;7;6;5;4;11;10;9;8;15;14;13;12;4;5;6;7;0;1;2;3;12;13;14;15;8;9;10;11;5;4;7;6;1;0;3;2;13;12;15;14;9;8;11;10;6;7;4;5;2;3;0;1;14;15;12;13;10;11;8;9;7;6;5;4;3;2;1;0;15;14;13;12;11;10;9;8;8;9;10;11;12;13;14;15;0;1;2;3;4;5;6;7;9;8;11;10;13;12;15;14;1;0;3;2;5;4;7;6;10;11;8;9;14;15;12;13;2;3;0;1;6;7;4;5;11;10;9;8;15;14;13;12;3;2;1;0;7;6;5;4;12;13;14;15;8;9;10;11;4;5;6;7;0;1;2;3;13;12;15;14;9;8;11;10;5;4;7;6;1;0;3;2;14;15;12;13;10;11;8;9;6;7;4;5;2;3;0;1;15;14;13;12;11;10;9;8;7;6;5;4;3;2;1;0;};
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    18
local function xor(x, y)
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    19
	local lowx, lowy = x % 16, y % 16;
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    20
	local hix, hiy = (x - lowx) / 16, (y - lowy) / 16;
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    21
	local lowr, hir = xor_map[lowx * 16 + lowy + 1], xor_map[hix * 16 + hiy + 1];
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    22
	local r = hir * 16 + lowr;
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    23
	return r;
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    24
end
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    25
local opadc, ipadc = s_char(0x5c), s_char(0x36);
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    26
local ipad_map = {};
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    27
local opad_map = {};
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    28
for i=0,255 do
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    29
	ipad_map[s_char(i)] = s_char(xor(0x36, i));
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    30
	opad_map[s_char(i)] = s_char(xor(0x5c, i));
1456
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    31
end
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    32
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    33
--[[
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    34
key
1516
4c9bd0527d1d util.hmac: Convert spaces to tabs
Matthew Wild <mwild1@gmail.com>
parents: 1482
diff changeset
    35
	the key to use in the hash
1456
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    36
message
1516
4c9bd0527d1d util.hmac: Convert spaces to tabs
Matthew Wild <mwild1@gmail.com>
parents: 1482
diff changeset
    37
	the message to hash
1456
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    38
hash
1516
4c9bd0527d1d util.hmac: Convert spaces to tabs
Matthew Wild <mwild1@gmail.com>
parents: 1482
diff changeset
    39
	the hash function
1456
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    40
blocksize
1516
4c9bd0527d1d util.hmac: Convert spaces to tabs
Matthew Wild <mwild1@gmail.com>
parents: 1482
diff changeset
    41
	the blocksize for the hash function in bytes
1456
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    42
hex
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    43
  return raw hash or hexadecimal string
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    44
--]]
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    45
function hmac(key, message, hash, blocksize, hex)
1516
4c9bd0527d1d util.hmac: Convert spaces to tabs
Matthew Wild <mwild1@gmail.com>
parents: 1482
diff changeset
    46
	if #key > blocksize then
4c9bd0527d1d util.hmac: Convert spaces to tabs
Matthew Wild <mwild1@gmail.com>
parents: 1482
diff changeset
    47
		key = hash(key)
4c9bd0527d1d util.hmac: Convert spaces to tabs
Matthew Wild <mwild1@gmail.com>
parents: 1482
diff changeset
    48
	end
1456
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    49
2268
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    50
	local padding = blocksize - #key;
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    51
	local ipad = s_gsub(key, ".", ipad_map)..s_rep(ipadc, padding);
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    52
	local opad = s_gsub(key, ".", opad_map)..s_rep(opadc, padding);
1456
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    53
2268
770a75623ed7 util.hmac: Optimized.
Waqas Hussain <waqas20@gmail.com>
parents: 1522
diff changeset
    54
	return hash(opad..hash(ipad..message), hex)
1456
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    55
end
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    56
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    57
function md5(key, message, hex)
1516
4c9bd0527d1d util.hmac: Convert spaces to tabs
Matthew Wild <mwild1@gmail.com>
parents: 1482
diff changeset
    58
	return hmac(key, message, hashes.md5, 64, hex)
1456
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    59
end
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    60
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    61
function sha1(key, message, hex)
1516
4c9bd0527d1d util.hmac: Convert spaces to tabs
Matthew Wild <mwild1@gmail.com>
parents: 1482
diff changeset
    62
	return hmac(key, message, hashes.sha1, 64, hex)
1456
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    63
end
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    64
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    65
function sha256(key, message, hex)
1516
4c9bd0527d1d util.hmac: Convert spaces to tabs
Matthew Wild <mwild1@gmail.com>
parents: 1482
diff changeset
    66
	return hmac(key, message, hashes.sha256, 64, hex)
1456
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    67
end
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    68
3135cf40110d Added HMAC utility module
Dwayne Bent <dbb.0@liqd.org>
parents:
diff changeset
    69
return _M