The below code works if I try to verify a token with a secret but now I want to verify the token with .pfx certificate and the password. How can this be achieved?
jwt.verify(token, secret, options, function(err, decoded) {
...
});
The below code works if I try to verify a token with a secret but now I want to verify the token with .pfx certificate and the password. How can this be achieved?
jwt.verify(token, secret, options, function(err, decoded) {
...
});