Uses of Class
org.forgerock.oauth2.core.OAuth2Jwt
-
Packages that use OAuth2Jwt Package Description org.forgerock.oauth2.core Defines the core classes to implement OAuth2 for OpenAM. -
-
Uses of OAuth2Jwt in org.forgerock.oauth2.core
Methods in org.forgerock.oauth2.core that return OAuth2Jwt Modifier and Type Method Description static OAuth2Jwt
OAuth2Jwt. create(String jwtString)
Creates anOAuth2Jwt
instance from the provided JWT string.static OAuth2Jwt
OAuth2Jwt. create(SignedJwt jws)
Creates anOAuth2Jwt
instance from the provided JWT string.OAuth2Jwt
ClientRegistration. decryptIdTokenHint(EncryptedJwt encryptedJwt)
Decrypts the provided id_token_hint value.Methods in org.forgerock.oauth2.core with parameters of type OAuth2Jwt Modifier and Type Method Description boolean
ClientRegistration. verifyIdTokenSignedByUsWithConfiguredAlg(OAuth2Jwt jwt)
Verifies that the supplied jwt is signed by AM using the algorithm the client has configured to use.boolean
ClientRegistration. verifyIdTokenSignedByUsWithConfiguredAlg(OAuth2Jwt jwt, boolean includeExpiryCheck)
Verifies that the supplied jwt is signed by AM using the algorithm the client has configured to use.boolean
ClientRegistration. verifyJwtBearerForClientAuthentication(OAuth2Request request, OAuth2Jwt jwt)
Verifies that the supplied jwt is signed by this client.
-