X.509 key set #435
Unanswered
mentoc3000
asked this question in
Q&A
Replies: 1 comment
-
It has to be a JSON Web Key Set. Proprietary key formats are, well, proprietary and not interoperable. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to use jose for Firebase JWT verification. The public keys are provided here and look like this:
The Firebase documentation defines the algorithm: RS256. I have succeeded in verifying an example JWT by importing the hardcoded key using
importX509
and passing the result and the JWT tojwtVerify
.Now I would like to use
createRemoteJWKSet
but I am struggling. From the documentation it looks like the expected format of the data from the URL, based on the example, is different from what I have. Is it possible to usecreateRemoteJWKSet
with this source of keys?Beta Was this translation helpful? Give feedback.
All reactions