Reputation: 6636
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:
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!
Upvotes: 2
Views: 3088
Reputation: 1554
Personally I've been using nimbus-jose-jwt
for some time now and it is very easy to use.
If you want to choose between the two options you mentioned, I would go with com.auth0
, mainly because it also looks very easy to use and much more mature and maintained than the other one.
HTH.
Upvotes: 1