public class JWKOpenIdResolverImpl extends BaseOpenIdResolver
CLIENT_SECRET_KEY, ISSUER_KEY, JWK, KEY_ALIAS_KEY, KEYSTORE_LOCATION_KEY, KEYSTORE_PASS_KEY, KEYSTORE_TYPE_KEY, WELL_KNOWN_CONFIGURATION
Constructor and Description |
---|
JWKOpenIdResolverImpl(String issuer,
JwksStore jwksStore)
Constructor using provided timeout values to generate the
SimpleHTTPClient used for communicating over HTTP. |
Modifier and Type | Method and Description |
---|---|
void |
validateIdentity(SignedJwt idClaim)
Validates the supplied Jwt against this OpenId Connect Idp.
|
void |
verifySignature(SignedJwt idClaim)
Verifies that the JWS was signed by the supplied key.
|
getIssuer
public JWKOpenIdResolverImpl(String issuer, JwksStore jwksStore) throws FailedToLoadJWKException
SimpleHTTPClient
used for communicating over HTTP.issuer
- The issuer (provider) of the Open Id Connect id tokenjwksStore
- The jwks storeFailedToLoadJWKException
- if there were issues resolving or parsing the JWKpublic void validateIdentity(SignedJwt idClaim) throws OpenIdConnectVerificationException
BaseOpenIdResolver
validateIdentity
in interface OpenIdResolver
validateIdentity
in class BaseOpenIdResolver
idClaim
- The Jwt to test is authenticated from this issuerOpenIdConnectVerificationException
- If the Jwt is unable to be verifiedpublic void verifySignature(SignedJwt idClaim) throws InvalidSignatureException, FailedToLoadJWKException
idClaim
- The JWS to verifyInvalidSignatureException
- If the JWS supplied does not match the key for this resolverFailedToLoadJWKException
- If the JWK supplied cannot be loaded from its remote locationCopyright © 2010-2018, ForgeRock All Rights Reserved.