Commit graph

8 commits

Author SHA1 Message Date
Matthew Wild
5ca81b0e3b util.jwt: Add support for ES512 (+ tests) 2022-09-29 23:17:42 +01:00
Matthew Wild
fad58c5ab2 util.jwt: All the algorithms (+ all the tests!)
Except 'none'. Not implementing that one.
2022-07-02 15:29:04 +01:00
Matthew Wild
74351799e9 util.jwt: Overhaul of tests to use declarative approach
Now we can consistently apply the same tests to every algorithm, instead of
duplicating code.
2022-07-02 14:22:20 +01:00
Matthew Wild
4d94a62f9b spec: Move test crypto keys to a shared file for clarity and easy maintenance 2022-07-02 12:36:52 +01:00
Matthew Wild
0b0555c339 util.jwt: Add support for RSA-based algorithms (RS256, PS256) 2022-07-02 12:26:43 +01:00
Matthew Wild
ae16ddcac7 util.jwt: Add support/tests for ES256 via improved API and using util.crypto
In many cases code will be either signing or verifying. With asymmetric
algorithms it's clearer and more efficient to just state that once, instead of
passing keys (and possibly other parameters) with every sign/verify call.

This also allows earlier validation of the key used.

The previous (HS256-only) sign/verify methods continue to be exposed for
backwards-compatibility.
2022-07-01 18:51:15 +01:00
Kim Alvefur
d9c8eeb889 util.jwt: Remove unused return value from tests [luacheck] 2020-02-24 09:10:28 +01:00
Kim Alvefur
0bcbbed753 util.jwt: Basic JSON Web Token library supporting HS256 tokens 2020-02-24 01:24:25 +01:00