auth0 / java-jwt

Java implementation of JSON Web Token (JWT)
MIT License
5.84k stars 921 forks source link

Support for PS256 algorithm #659

Open ataylormays-duetto opened 1 year ago

ataylormays-duetto commented 1 year ago

Describe the problem you'd like to have solved

According to both https://github.com/auth0/java-jwt#requirements and this library's profile on JWT.io (https://jwt.io/libraries?language=Java), there's no support for the PS256 algorithm whereas most other JWT libraries do support it.

jimmyjames commented 1 year ago

Seems like a good algorithm to support; while we might not get to this super soon, contributions are welcome! Some implementation considerations (I haven't looked into PS256 support in Java, but just in general):

vasantteja commented 9 hours ago

Can I contribute?