-
Notifications
You must be signed in to change notification settings - Fork 50
/
luajwt.lua
150 lines (105 loc) · 3.42 KB
/
luajwt.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
local cjson = require 'cjson'
local base64 = require 'base64'
local crypto = require 'crypto'
local alg_sign = {
['HS256'] = function(data, key) return crypto.hmac.digest('sha256', data, key, true) end,
['HS384'] = function(data, key) return crypto.hmac.digest('sha384', data, key, true) end,
['HS512'] = function(data, key) return crypto.hmac.digest('sha512', data, key, true) end,
}
local alg_verify = {
['HS256'] = function(data, signature, key) return signature == alg_sign['HS256'](data, key) end,
['HS384'] = function(data, signature, key) return signature == alg_sign['HS384'](data, key) end,
['HS512'] = function(data, signature, key) return signature == alg_sign['HS512'](data, key) end,
}
local function b64_encode(input)
local result = base64.encode(input)
result = result:gsub('+','-'):gsub('/','_'):gsub('=','')
return result
end
local function b64_decode(input)
-- input = input:gsub('\n', ''):gsub(' ', '')
local reminder = #input % 4
if reminder > 0 then
local padlen = 4 - reminder
input = input .. string.rep('=', padlen)
end
input = input:gsub('-','+'):gsub('_','/')
return base64.decode(input)
end
local function tokenize(str, div, len)
local result, pos = {}, 0
for st, sp in function() return str:find(div, pos, true) end do
result[#result + 1] = str:sub(pos, st-1)
pos = sp + 1
len = len - 1
if len <= 1 then
break
end
end
result[#result + 1] = str:sub(pos)
return result
end
local M = {}
function M.encode(data, key, alg)
if type(data) ~= 'table' then return nil, "Argument #1 must be table" end
if type(key) ~= 'string' then return nil, "Argument #2 must be string" end
alg = alg or "HS256"
if not alg_sign[alg] then
return nil, "Algorithm not supported"
end
local header = { typ='JWT', alg=alg }
local segments = {
b64_encode(cjson.encode(header)),
b64_encode(cjson.encode(data))
}
local signing_input = table.concat(segments, ".")
local signature = alg_sign[alg](signing_input, key)
segments[#segments+1] = b64_encode(signature)
return table.concat(segments, ".")
end
function M.decode(data, key, verify)
if key and verify == nil then verify = true end
if type(data) ~= 'string' then return nil, "Argument #1 must be string" end
if verify and type(key) ~= 'string' then return nil, "Argument #2 must be string" end
local token = tokenize(data, '.', 3)
if #token ~= 3 then
return nil, "Invalid token"
end
local headerb64, bodyb64, sigb64 = token[1], token[2], token[3]
local ok, header, body, sig = pcall(function ()
return cjson.decode(b64_decode(headerb64)),
cjson.decode(b64_decode(bodyb64)),
b64_decode(sigb64)
end)
if not ok then
return nil, "Invalid json"
end
if verify then
if not header.typ or header.typ ~= "JWT" then
return nil, "Invalid typ"
end
if not header.alg or type(header.alg) ~= "string" then
return nil, "Invalid alg"
end
if body.exp and type(body.exp) ~= "number" then
return nil, "exp must be number"
end
if body.nbf and type(body.nbf) ~= "number" then
return nil, "nbf must be number"
end
if not alg_verify[header.alg] then
return nil, "Algorithm not supported"
end
if not alg_verify[header.alg](headerb64 .. "." .. bodyb64, sig, key) then
return nil, "Invalid signature"
end
if body.exp and os.time() >= body.exp then
return nil, "Not acceptable by exp"
end
if body.nbf and os.time() < body.nbf then
return nil, "Not acceptable by nbf"
end
end
return body
end
return M