how to decrypt and verify a nested JWT with binary payload
I have a nested JWT to decrypt and verify. The payload is binary (header, binary payload , signature, encrypted with the public key). So there is no claims to parse. I’ve been looking at available libraries. I’ve tried to use jose library. Here’s what I’ve done:
GO how to decrypt and verify a nested JWT with binary payload in GO
I have a nested JWT to decrypt and verify. The payload is binary (header, binary payload , signature, encrypted with the public key). So there is no claims to parse. I’ve been looking at available libraries. I’ve tried to use jose library. Here’s what I’ve done:
Golang decode JWT Token and get userid
So i created a token
JWT gets validated even though I changed a character inside it
I’m learning JWT. I am using Golang to sign and validate JWTs. The problem is when I change the last character of the signed JWT to another character, it still gets validated.