Package com.google.crypto.tink.jwt
Interface JwtPublicKeyVerifyInternal
-
@Immutable public interface JwtPublicKeyVerifyInternalInterface for verifying a signed JWT, as described in RFC 7519 and RFC 7515.Security guarantees: similar to
PublicKeyVerify.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VerifiedJwtverifyAndDecodeWithKid(java.lang.String compact, JwtValidator validator, java.util.Optional<java.lang.String> kid)Verifies and decodes a JWT in the JWS compact serialization format.
-
-
-
Method Detail
-
verifyAndDecodeWithKid
VerifiedJwt verifyAndDecodeWithKid(java.lang.String compact, JwtValidator validator, java.util.Optional<java.lang.String> kid) throws java.security.GeneralSecurityException
Verifies and decodes a JWT in the JWS compact serialization format.The JWT is validated against the rules in
validator. That is, every claim invalidatormust also be present in the JWT. For example, ifvalidatorcontains anissclaim, the JWT must contain an identical claim. The JWT can contain claims that areNOTin thevalidator. However, if the JWT contains a list of audiences, the validator must also contain an audience in the list.If the JWT contains timestamp claims such as
exp,iatornbf, they will also be validated.validatorallows to set a clock skew, to deal with small clock differences among different machines.Additionally, it verifies that the correct kid header is present if a kid is provided.
- Throws:
java.security.GeneralSecurityException- when the signature of the token could not be verified, the token contains an invalid claim or header, the token has been expired or can't be used yet
-
-