| Crates.io | jwtk |
| lib.rs | jwtk |
| version | 0.4.0 |
| created_at | 2021-08-10 15:01:24.368008+00 |
| updated_at | 2025-03-11 15:03:55.325619+00 |
| description | JWT signing (JWS) and verification, with first class JWK and JWK Set (JWKS) support. |
| homepage | |
| repository | https://github.com/blckngm/jwtk |
| max_upload_size | |
| id | 434304 |
| size | 139,562 |
JWT signing (JWS) and verification, with first class JWK and JWK Set (JWKS) support.
Supports almost all JWS algorithms:
Supports exp and nbf validations. (Other validations will not be supported,
because they are mostly application specific and can be easily implemented by
applications.)
Supports converting public/private keys to/from PEM/JWK. Supports working with
generic keys (where the algorithm is determined at runtime), i.e.
SomePrivateKey/SomePublicKey.
Uses good old openssl for crypto.
See the examples folder for some examples.