Uses of Class
org.keycloak.common.VerificationException
Package
Description
-
Uses of VerificationException in org.keycloak
Modifier and TypeMethodDescriptionRSATokenVerifier.getHeader()
Deprecated.TokenVerifier.getHeader()
RSATokenVerifier.getToken()
Deprecated.TokenVerifier.getToken()
RSATokenVerifier.parse()
Deprecated.TokenVerifier.parse()
boolean
TokenVerifier.AudienceCheck.test
(JsonWebToken t) boolean
TokenVerifier.IssuedForCheck.test
(JsonWebToken jsonWebToken) boolean
Performs a single check on the given token verifier.boolean
TokenVerifier.RealmUrlCheck.test
(JsonWebToken t) boolean
TokenVerifier.TokenTypeCheck.test
(JsonWebToken t) static void
RSATokenVerifier.verify()
Deprecated.TokenVerifier.verify()
void
TokenVerifier.verifySignature()
static AccessToken
RSATokenVerifier.verifyToken
(String tokenString, PublicKey publicKey, String realmUrl) Deprecated.static AccessToken
RSATokenVerifier.verifyToken
(String tokenString, PublicKey publicKey, String realmUrl, boolean checkActive, boolean checkTokenType) Deprecated. -
Uses of VerificationException in org.keycloak.authentication
-
Uses of VerificationException in org.keycloak.authentication.actiontoken
Modifier and TypeClassDescriptionclass
Token verification exception that bears an error to be logged via event system and a message to show to the user e.g.Modifier and TypeMethodDescriptionActionTokenHandler.startFreshAuthenticationSession
(T token, ActionTokenContext<T> tokenContext) Creates a fresh authentication session according to the information from the token. -
Uses of VerificationException in org.keycloak.broker.saml
Modifier and TypeMethodDescriptionprotected abstract void
SAMLEndpoint.Binding.verifySignature
(String key, SAMLDocumentHolder documentHolder) protected void
SAMLEndpoint.PostBinding.verifySignature
(String key, SAMLDocumentHolder documentHolder) protected void
SAMLEndpoint.RedirectBinding.verifySignature
(String key, SAMLDocumentHolder documentHolder) -
Uses of VerificationException in org.keycloak.crypto
Modifier and TypeMethodDescriptionstatic void
SignatureProvider.checkKeyForVerification
(KeyWrapper key, String algorithm, String type) AsymmetricClientSignatureVerifierProvider.verifier
(ClientModel client, JWSInput input) AsymmetricSignatureProvider.verifier
(KeyWrapper key) ClientSignatureVerifierProvider.verifier
(ClientModel client, JWSInput input) ECDSAClientSignatureVerifierProvider.verifier
(ClientModel client, JWSInput input) ECDSASignatureProvider.verifier
(KeyWrapper key) MacSecretClientSignatureVerifierProvider.verifier
(ClientModel client, JWSInput input) MacSecretSignatureProvider.verifier
(KeyWrapper key) SignatureProvider.verifier
(KeyWrapper key) boolean
AsymmetricSignatureVerifierContext.verify
(byte[] data, byte[] signature) boolean
ClientECDSASignatureVerifierContext.verify
(byte[] data, byte[] signature) boolean
MacSignatureVerifierContext.verify
(byte[] data, byte[] signature) boolean
ServerECDSASignatureVerifierContext.verify
(byte[] data, byte[] signature) boolean
SignatureVerifierContext.verify
(byte[] data, byte[] signature) ModifierConstructorDescriptionClientAsymmetricSignatureVerifierContext
(KeycloakSession session, ClientModel client, JWSInput input) ClientECDSASignatureVerifierContext
(KeycloakSession session, ClientModel client, JWSInput input) ClientMacSignatureVerifierContext
(KeycloakSession session, ClientModel client, String algorithm) ServerAsymmetricSignatureVerifierContext
(KeycloakSession session, String kid, String algorithm) ServerECDSASignatureVerifierContext
(KeycloakSession session, String kid, String algorithm) ServerMacSignatureVerifierContext
(KeycloakSession session, String kid, String algorithm) -
Uses of VerificationException in org.keycloak.exceptions
Modifier and TypeClassDescriptionclass
Exception thrown for cases when token is invalid due to time constraints (expired, or not yet valid).class
Thrown when token signature is invalid.class
Exception thrown on failed verification of a token. -
Uses of VerificationException in org.keycloak.forms.login.freemarker
Modifier and TypeMethodDescriptionDetachedInfoStateChecker.verifyStateCheckerParameter
(String stateCheckerParam) -
Uses of VerificationException in org.keycloak.protocol.oidc
-
Uses of VerificationException in org.keycloak.protocol.saml
Modifier and TypeMethodDescriptionstatic PublicKey
SamlProtocolUtils.getEncryptionKey
(ClientModel client) Returns public part of SAML encryption key from the client settings.static PublicKey
SamlProtocolUtils.getPublicKey
(ClientModel client, String attribute) static PublicKey
SamlProtocolUtils.getSignatureValidationKey
(ClientModel client) Returns public part of SAML signing key from the client settings.static void
SamlProtocolUtils.verifyDocumentSignature
(ClientModel client, Document document) Verifies a signature of the given SAML document using settings for the given client.static void
SamlProtocolUtils.verifyDocumentSignature
(Document document, KeyLocator keyLocator) Verifies a signature of the given SAML document using keys obtained from the given key locator.static void
SamlProtocolUtils.verifyRedirectSignature
(SAMLDocumentHolder documentHolder, KeyLocator locator, jakarta.ws.rs.core.MultivaluedMap<String, String> encodedParams, String paramKey) static void
SamlProtocolUtils.verifyRedirectSignature
(SAMLDocumentHolder documentHolder, KeyLocator locator, jakarta.ws.rs.core.UriInfo uriInformation, String paramKey) protected abstract void
SamlService.BindingProtocol.verifySignature
(SAMLDocumentHolder documentHolder, ClientModel client) protected void
SamlService.PostBindingProtocol.verifySignature
(SAMLDocumentHolder documentHolder, ClientModel client) protected void
SamlService.RedirectBindingProtocol.verifySignature
(SAMLDocumentHolder documentHolder, ClientModel client) -
Uses of VerificationException in org.keycloak.saml.processing.core.util
Modifier and TypeMethodDescriptionstatic boolean
RedirectBindingSignatureUtil.validateRedirectBindingSignature
(SignatureAlgorithm sigAlg, byte[] rawQueryBytes, byte[] decodedSignature, KeyLocator locator, String keyId) -
Uses of VerificationException in org.keycloak.services.resources
Modifier and TypeMethodDescriptionstatic void
LoginActionsServiceChecks.checkIsClientValid
(KeycloakSession session, ClientModel client) Verifies whether the client denoted by client ID in token'siss
(issuedFor
) field both exists and is enabled.static <T extends JsonWebToken>
voidLoginActionsServiceChecks.checkIsClientValid
(T token, ActionTokenContext<T> context) Verifies whether the client denoted by client ID in token'siss
(issuedFor
) field both exists and is enabled.static void
LoginActionsServiceChecks.checkIsUserValid
(KeycloakSession session, RealmModel realm, String userId, Consumer<UserModel> userSetter) Verifies whether the user given by ID both exists in the current realm.static <T extends JsonWebToken & SingleUseObjectKeyModel>
voidLoginActionsServiceChecks.checkIsUserValid
(T token, ActionTokenContext<T> context) Verifies whether the user given by ID both exists in the current realm.static <T extends JsonWebToken>
voidLoginActionsServiceChecks.checkNotLoggedInYet
(ActionTokenContext<T> context, AuthenticationSessionModel authSessionFromCookie, String authSessionId) Verifies that the authentication session has not yet been converted to user session, in other words that the user has not yet completed authentication and logged in.static <T extends JsonWebToken & SingleUseObjectKeyModel>
voidLoginActionsServiceChecks.checkTokenWasNotUsedYet
(T token, ActionTokenContext<T> context) static <T extends JsonWebToken>
booleanLoginActionsServiceChecks.doesAuthenticationSessionFromCookieMatchOneFromToken
(ActionTokenContext<T> context, AuthenticationSessionModel authSessionFromCookie, String authSessionCompoundIdFromToken) This check verifies that current authentication session is consistent with the one specified in token.boolean
LoginActionsServiceChecks.AuthenticationSessionUserIdMatchesOneFromToken.test
(JsonWebToken t) boolean
LoginActionsServiceChecks.IsActionRequired.test
(JsonWebToken t) boolean
LoginActionsServiceChecks.IsRedirectValid.test
(JsonWebToken t)