fukamachi / jose

A JOSE implementation
32 stars 8 forks source link

Add the library to https://jwt.io/libraries #6

Open mdbergmann opened 10 months ago

mdbergmann commented 10 months ago

And if it's just for visibility of Common Lisp

fukamachi commented 10 months ago

Sounds good. Sending a PR is the only thing to do, I guess. https://github.com/jsonwebtoken/jsonwebtoken.github.io/tree/master/views/website/libraries

mdbergmann commented 10 months ago

OK, I could do it but I'm not sure about the supported features:

        "sign": true,
        "verify": true,
        "iss": false,
        "sub": false,
        "aud": false,
        "exp": false,
        "nbf": false,
        "iat": false,
        "jti": false,
        "hs256": true,
        "hs384": true,
        "hs512": true,
        "rs256": false,
        "rs384": false,
        "rs512": false,
        "es256": false,
        "es384": false,
        "es512": false,
        "ps256": false,
        "ps384": false,
        "ps512": false

If you could add those I can handle the PR and stuff.