nim-jwt icon indicating copy to clipboard operation
nim-jwt copied to clipboard

JWT implementation for nim-lang

Results 3 nim-jwt issues
Sort by recently updated
recently updated
newest added

Looking at the JWT standard(s) the list of possible headers is open-ended, providing for [public and private](https://www.rfc-editor.org/rfc/rfc7515.html#section-4.2) name/value pairs in headers, similar to [claims](https://tools.ietf.org/html/rfc7519#section-4.2). In the current implementation we only...

I noticed that there is a list of many libraries from a large variety of languages but not Nim. Should this package be added to that list? https://jwt.io/

Could the `verify` method API be standarized? I mean, now it can return false or throw an exception, one thing should be possible only, if not this lead to duplicating...