jwk Questions
3
Solved
I am reading about JWKS and found information about the key rotation concept - https://developer.okta.com/docs/concepts/key-rotation/
Let's assume I use JWKS in my application but I don't fetch the...
7
Solved
There is an RSA key from an RFC:
https://www.rfc-editor.org/rfc/rfc7516#appendix-A.1
{"kty":"RSA",
"n":"oahUIoWw0K0usKNuOR6H4wkf4oBUXHTxRvgb48E-BVvxkeDNjbC4he8r...
2
I am reading this blog about JWTs and how you can use the signature part of it to verify that the token was actually issued by the trusted party.
https://hackernoon.com/json-web-tokens-jwt-demysti...
Forepaw asked 2/3, 2020 at 21:40
2
Solved
This question is more generic rather than for a specific language, so I will explain my issue and what I have tried in pseudocode.
I am trying to generate a PEM public key from a JWK Set. The JWK i...
Department asked 3/2, 2022 at 15:32
3
Solved
I am developing an application where all the API's are protected by OAuth. I have received the access token from the client, but could not decode and validate the token.
I have JWK in the below for...
4
We are using spring-security 5.2 for securing our REST API through JWT validation.
With the spring:security:oauth2:resourceserver:jwt:jwk-set-uri property we indicate the remote JWKS endpoint whic...
Nilsanilsen asked 26/2, 2020 at 8:31
2
Solved
I have the need to generate a JWK with the following parameters:
“kty”: Key Type
“kid”: Key ID
“use”: “sig” Public Key Use
“n”: the modulus
“e”: “AQAB” the public exponent
“x5c”: X. 509 Certi...
Wrench asked 14/9, 2021 at 14:39
1
Solved
I am trying to call some APIs published by the IRS. They require me to create a JWK and send them the public key.
I was able to generate an RSA JWK key using this code:
package com.propfinancing.jw...
Aberdare asked 22/11, 2022 at 18:9
2
Solved
I have a JWT security token which I need to verify via jwks endpoint.
Data in jwks looks like:
{
"keys": [
{
"kty": "RSA",
"e": "AQAB",
"use": "sig",
"alg": "RS256",
"n": "......",
"kid":...
1
I am using Cognito(using the amazon-javascript-sdk) in a .net Core angular application and im trying to verify the access_token that i get from amazon in my .net core back-end so that I can protect...
Kaolinite asked 23/10, 2018 at 9:29
3
I need to generate JSON Web Key (jwk) using C# as shown. I have gone through a few articles but there were implementations in other languages such as Java and there was a third-party library (Nimbu...
2
My goal is to verify my id_token in JSON Web Token (JWT) format using jsonwebtoken verify method, which requires a public key as the second argument. My web application is a node js application.
Ac...
Ashworth asked 14/4, 2021 at 19:40
1
Solved
What is the difference between JOSE, JWA, JWE, JWK, JWS and JWT and how are they related to one another?
2
Solved
I need to convert a RSA PublicKey into a valid JWK. Especially the values "n" an "e" of the JWK are the ones I'm struggling with. The encoding does not seem to be correct, when ...
Kearney asked 13/7, 2018 at 11:4
3
Solved
I was having some trouble figuring out how to go about validating a JWT given to the client by AWS Cognito inside my .NET Core Web API.
Not only could I not figure out what the variables for Micro...
Brno asked 10/11, 2018 at 23:30
3
Solved
I want to verify a signature from a Google JWT which uses RS256 as signature algorithm as of right now (Certs from Google: https://www.googleapis.com/oauth2/v3/certs), and the only libary which i c...
Armipotent asked 6/6, 2020 at 6:42
1
Solved
I am trying to verify an idToken using a public key in python.
I first convert the JWK token to PEM but when I call the "decode" function, I see a "signature verification failed"...
1
Solved
I am trying to use node-jose to verify signatures of my JWTs. I know the secret, but am having trouble converting this secret into a JWK used for the verification.
Here is an example of how I am tr...
Ringside asked 28/12, 2021 at 15:26
7
Solved
Ok, I understand that the question I am asking may be pretty obvious, but unfortunately I lack the knowledge on this subject and this task seems to be quite tricky for me.
I have an id token (JWT)...
Stride asked 21/12, 2015 at 20:28
1
What does "e": "AQAB" mean in JWKS - Json Web Key Set
{
"keys": [
{
"kty": "RSA", #key type
"e": "AQAB", #Question - what d...
Dong asked 18/11, 2021 at 15:52
3
Solved
I have been searching for an example I can understand of how to validate the signature of a JWT with the Go Language.
This might be especially tricky since I am using Okta, and it uses JWKs, so it ...
1
Can anyone help regarding this??
I generated a key in python using jwk using below command and stored in a variable key
key = jwk.JWK.generate(kty='RSA', size=512)
and when i used key.export() it ...
Mog asked 3/6, 2021 at 12:26
2
Solved
I'm using JWKS format to provide from an authentication service the public key that can be used to validate tokens coming from that authentication service. However, to perform validation I need to ...
Waldos asked 21/3, 2021 at 22:2
2
Solved
Suppose I have the following JWK as the deserialised body of some JWS (RFC7515), where the modulus n is partially omitted for display purposes
{
"kty": "RSA",
"e": &...
Nestle asked 26/2, 2021 at 16:3
1
Solved
"n": "rKZ-1zdz_CoLekSynOtyWv6cPSSkV28Kb9kZZHyYL-yhkKnH_bHl8OpWiGxQiKP0ulLRIaq1IhSMetkZ8FfXH-iptIDu4lPb8gt0HQYkjcy3HoaKRXBw2F8fJQO4jQ-ufR4l-E0HRqwLywzdtAImNWmju3A4kx8s0iSGHGSHyE4EUdh5...
Flatt asked 27/1, 2021 at 13:19
1 Next >
© 2022 - 2025 — McMap. All rights reserved.