Questions tagged [rs256]

23 questions
0
votes
0 answers

superset api using tokens get via oauth

i have setup superset with oauth in keycloak sso in web is is woking ok using cookies but for superset api we need to use a token superset is a flask based app using configs we setup: JWT_ALGORITHM = 'RS256' JWT_PUBLIC_KEY = """ …
0
votes
1 answer

why to fetch public key dynamically for verifying JWT token (RSA-256)

With JWT approach we get advantage that we don't need to call auth server every time. We need public key to verify JWT token issued via RSA-256. And public keys are getting rotated (Ref -…
Anurag
  • 1,013
  • 11
  • 30
0
votes
0 answers

Trying to set up JWT Auth. using Keycloak on .NET 2.2 but getting 401 error

I'm trying to add Auth to my application using KeyCloak as a Identity Provider. Now following this tutorial: Security in React and Web API I've managed to make it work, but only with .NET 6. Now the project that I am working on is using .NET…
0
votes
0 answers

JWT Scala: Key bytes may only be specified for HMAC signatures. If using RSA or Elliptic Curve, use the signWith() method instead

I am using Scala to generate JWT using RS256 algorithm and private keys: val jwtPayload = s"""{ | "exp": $time, | "iss": "$orgId", | "sub": "$technicalAccountId", …
Shivam Sahil
  • 4,055
  • 3
  • 31
  • 62
0
votes
1 answer

Convert Private JWK to private.pem

I have generated a public/private JWS Key Pair and I need to convert my private key to a .pem file to sign my JWT using RS256 Algorithm. Is there a solution for this? I dont mind using like bash scripts etc, I am writing in .NET though if there is a…
Liam Kenny
  • 129
  • 1
  • 11
0
votes
0 answers

Verifying that the webhook request data came from Wix

I am creating an app for the Wix platform using the Laravel framework. I have registered webhooks but now I have to verify that webhook request using PHP. The encryption technique I have to use is the RS256 algorithm but I can't find any RS256…
Lokesh Suman
  • 493
  • 5
  • 14
-1
votes
1 answer

I am trying to generate code verifier and code challenges in jMeter

I am trying to generate code verifier and code challenges in JMeter for that I written a code But it is not working. please help me to fix this I want to generate a string for code verifier and code challenge and pass it too as a variable in my…
-1
votes
1 answer

JWT Validation in .Net Core

I've been struggling with this for a few days... There seems to be a number of similar questions on here but I can't find one which covers this exact scenario. I have a node service which is creating a jsonwebtoken NPM package (RS256). Any other…
1
2