From today, I am learning the JWT process by myself. And I want to create a simple application, where I can create a token with RS256, and verify it. But I am not sure, which dependency should I use, and why:
- com.auth0
- io.jsonwebtoken
I found them in this link: https://jwt.io/
I also see that both of them can check everything. But how to decide which to use? I thing for now, the one with less code writing can be more interesting.
Thanks for the comments!