How to validate signature of JWT from jwks without x5c
问题 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": "2132132-b1e6-47e7-a30f-1831942f74bd" }, { "kty": "RSA", "e": "AQAB", "use": "sig", "alg": "RS256", "n": "......", "kid": "tsp-app-a" }, { "kty": "RSA", "e": "AQAB", "use": "sig", "alg": "RS256", "n": ".....", "kid": "tsp-app-b" } ] } I have tried one third party api but it looks like it is dependent on x5c