util.jwt: Basic JSON Web Token library supporting HS256 tokens

This commit is contained in:
Kim Alvefur 2020-02-24 01:24:25 +01:00
parent 8d04879adf
commit 0bcbbed753
2 changed files with 70 additions and 0 deletions

20
spec/util_jwt_spec.lua Normal file
View file

@ -0,0 +1,20 @@
local jwt = require "util.jwt";
describe("util.jwt", function ()
it("validates", function ()
local key = "secret";
local token = jwt.sign(key, { payload = "this" });
assert.string(token);
local ok, parsed = jwt.verify(key, token);
assert.truthy(ok)
assert.same({ payload = "this" }, parsed);
end);
it("rejects invalid", function ()
local key = "secret";
local token = jwt.sign("wrong", { payload = "this" });
assert.string(token);
local ok, err = jwt.verify(key, token);
assert.falsy(ok)
end);
end);