Uses of Class
org.forgerock.json.jose.jwk.JWKSet
-
Packages that use JWKSet Package Description org.forgerock.json.jose.jwk Classes and interfaces for creating and manipulating JWKs.org.forgerock.json.jose.jwk.store This package contains classes to manage a JWKs URI.org.forgerock.secrets.jwkset Secret store backend for retrieving keys from a local or remote JWK Set. -
-
Uses of JWKSet in org.forgerock.json.jose.jwk
Methods in org.forgerock.json.jose.jwk that return JWKSet Modifier and Type Method Description JWKSetJWKSetParser. jwkSet(URL url)Deprecated.UseJWKSetParser.jwkSetAsync(URL)instead.static JWKSetJWKSet. parse(String json)Parses a JWKSet object from a string json object.static JWKSetJWKSet. parse(JsonValue json)Parses a JWKSet object from a jsonValue object.Methods in org.forgerock.json.jose.jwk that return types with arguments of type JWKSet Modifier and Type Method Description Promise<JWKSet,FailedToLoadJWKException>JWKSetParser. jwkSetAsync(URL url)Provides a JWK set as indicated by the JWKSet's URL.Methods in org.forgerock.json.jose.jwk with parameters of type JWKSet Modifier and Type Method Description Map<String,Key>JWKSetParser. jwkSetToMap(JWKSet jwkSet)Converts a supplied JWKSet into a map of key:values, where the keys are the keyIds and the values are verification keys. -
Uses of JWKSet in org.forgerock.json.jose.jwk.store
Methods in org.forgerock.json.jose.jwk.store that return types with arguments of type JWKSet Modifier and Type Method Description Pair<JWKSet,Instant>JwksStore. getLastLoadedJwkSet()Returns the last successfully loaded JWK Set together with the time at which it was last fetched.Promise<JWKSet,FailedToLoadJWKException>JwksStore. getLatestJwkSet()Returns the latest non expired successfully loaded JWK Set. -
Uses of JWKSet in org.forgerock.secrets.jwkset
Constructors in org.forgerock.secrets.jwkset with parameters of type JWKSet Constructor Description JwkSetSecretStore(JWKSet jwkSet, Options options)Creates a secret store directly from the given JWK Set.
-