java-jwt
java-jwt copied to clipboard
Validating token without the need of an Algorithm
At this time it does not seem that I can use the JWTVerifier to validate a token without requiring an Algorithm to do so. This seems odd since we can decode the token's without an Algorithm and we would essentially be having to implement that logic ourselves with the JWTVerifier interface with the same logic as the impl provided. But is this really what we would have to do to have a verifier that does not require an algorithm?