mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.jwt: Basic JSON Web Token library supporting HS256 tokens
This commit is contained in:
parent
8d04879adf
commit
0bcbbed753
2 changed files with 70 additions and 0 deletions
20
spec/util_jwt_spec.lua
Normal file
20
spec/util_jwt_spec.lua
Normal 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);
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue