IndominusByte / fastapi-jwt-auth

FastAPI extension that provides JWT Auth support (secure, easy to use, and lightweight)
http://indominusbyte.github.io/fastapi-jwt-auth/
MIT License
636 stars 144 forks source link

Support for RSA base encryption #2

Closed m4nuC closed 3 years ago

m4nuC commented 3 years ago

Hi, for RSA base encryption there is a public key that is used to decrypt messages. By the look of it, the library does not seem to support this. Would it make sense to add support for it ?

IndominusByte commented 3 years ago

currently, this version cannot support for RSA but in the next feature I will add RSA support, but if you want to PR feel free to PR @m4nuC

IndominusByte commented 3 years ago

Done in 2fccd4338fd63d3f5c720756e699e13d2a3010b2 👍

m4nuC commented 3 years ago

Thank you !