it's simple to read payload if JWT token with hash algorithms(hs256 f.e.):
string Payload = JwtCore.JsonWebToken.DecodeToObject(token, secretKey) as Dictionary<string, object>;
But jwtCore use only with hash algorithms, how to be with rs algorithms?
Now I have token on RS256 and also have Public key
On server I need only send token to another server for validate and to read data from payload
On site jwt.io I've just put my token with no public key and there is show me payload, how ca I do it on c# .net Core?