-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added RS256 and RS512 Support #77
base: master
Are you sure you want to change the base?
Conversation
Hi @popwarfour, I appreciate your efforts here and I'm completely for adding RSASSA-PKCS1 support to this library however I have a few concerns about the use of a third party crypto library SwiftRSA. Would you be willing to update this pull request to use system crypto (CommonCrypto) instead of SwiftRSA? There are a number of trade-offs and I think ultimately using an audited and certified library such as CommonCrypto will be more secure. CommonCrypto is not available on non-Apple platforms, so here we can use system OpenSSL. However it seems that you perhaps are no looking to use the library on Linux so it makes sense that the RSASSA-PKCS1 would only be available on Darwin based platforms with CommonnCrypto for now.
Would you be willing to update this pull request to use system crypto (CommonCrypto) instead of SwiftRSA? |
What is the status on this? I need RS256 support for a project. It is considered unsecure to store a secret in a unsecure client (such as an app) so we can't use HS256, right? |
You can use my fork for now. I haven't had the time to make kylef's suggested changes. |
I'm trying to use your fork now. I simply starting by trying to get the sample data from jwt.io (RS256) to work, so use this as input: eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWV9.EkN-DOsnsuRjRO6BxXemmJDm3HbxrbRzXglbN2S4sOkopdU4IsDxTI8jO19W_A4K8ZPJijNLis4EZsHeY559a4DFOd50_OqgHGuERTqYZyuhtF39yxJPAjUESwxk2J5k_4zM3O-vtd1Ghyo4IbqKKSy6J9mTniYJPenn5-HIirE But I'm not sure what format the secret/public key should be in, i tried raw public key with and without -----BEGIN PUBLIC KEY----- and -----END PUBLIC KEY----- and i tried a self signed certificate containing the public key ( because of this thread https://stackoverflow.com/questions/43629383/validate-jwt-token-with-rs256-or-rs512-with-swift-ios). Could you point me in the right direction? |
Had to increase deployment target to support SwiftRSA framework.
Updated README also