-
Notifications
You must be signed in to change notification settings - Fork 28
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
RSA public key exponent too long? #50
Comments
Yes, E is the public exponent. |
Ok, thank you for the explanation!
where |
According to https://datatracker.ietf.org/doc/html/rfc7518#section-3.3 it looks like RS256 JOSE signatures require the use of PKCS1-v1.5 padding of the message. However Ironclad only has PKCS1-v2.1 so far (OAEP and PSS), see issue #41. I've never used it, but maybe https://github.com/fukamachi/jose has what you're looking for... |
Thanks a lot! This may be an issue! |
I'm trying to make ACME (RFC8555) client and always got "JWS verification error" from LetsEncrypt's server.
May be it because I'm constructing a wrong jwk in my request.
The following code:
gives me something like:
Is the
:E
a public key exponent? In all examples I sawe
is a much smaller integer.The text was updated successfully, but these errors were encountered: