Relation with ruby-jwt gem
printercu opened this issue · 1 comments
printercu commented
Hi! Can you please clarify if there any difference between this gem and https://github.com/jwt/ruby-jwt ? Which one should I use in new project?
Thank you!
FranklinYu commented
- They have a different API.
- JWT (JSON Web Token) is (to some extend) JWS (JSON Web Signature) plus JWE (JSON Web Encryption). This gem fully supports JWT; that gem claims to support JWT but it actually only supports JWS. See jwt/ruby-jwt#80.