Uses of Class
com.nimbusds.jose.jwk.JWKSet
-
Packages that use JWKSet Package Description com.nimbusds.jose.crypto Implementations of standard Javascript Object Signing and Encryption (JOSE) algorithms.com.nimbusds.jose.jwk JSON Web Key (JWK) classes.com.nimbusds.jose.jwk.source JSON Web Key (JWK) sourcing interface and utilities. -
-
Uses of JWKSet in com.nimbusds.jose.crypto
Constructors in com.nimbusds.jose.crypto with parameters of type JWKSet Constructor Description MultiEncrypter(JWKSet keys)Creates a new multi-recipient encrypter.MultiEncrypter(JWKSet keys, SecretKey contentEncryptionKey)Creates a new multi-recipient encrypter. -
Uses of JWKSet in com.nimbusds.jose.jwk
Methods in com.nimbusds.jose.jwk that return JWKSet Modifier and Type Method Description static JWKSetJWKSet. load(File file)Loads a JWK set from the specified file.static JWKSetJWKSet. load(InputStream inputStream)Loads a JWK set from the specified input stream.static JWKSetJWKSet. load(URL url)Loads a JWK set from the specified URL.static JWKSetJWKSet. load(URL url, int connectTimeout, int readTimeout, int sizeLimit)Loads a JWK set from the specified URL.static JWKSetJWKSet. load(URL url, int connectTimeout, int readTimeout, int sizeLimit, Proxy proxy)Loads a JWK set from the specified URL.static JWKSetJWKSet. load(KeyStore keyStore, PasswordLookup pwLookup)Loads a JWK set from the specified JCA key store.static JWKSetJWKSet. parse(String s)Parses the specified string representing a JWK set.static JWKSetJWKSet. parse(Map<String,Object> json)Parses the specified JSON object representing a JWK set.JWKSetJWKSet. toPublicJWKSet()Returns a copy of this (JWK) set with all private keys and parameters removed.Methods in com.nimbusds.jose.jwk with parameters of type JWKSet Modifier and Type Method Description List<JWK>JWKSelector. select(JWKSet jwkSet)Selects the keys from the specified JWK set according to the matcher's criteria. -
Uses of JWKSet in com.nimbusds.jose.jwk.source
Methods in com.nimbusds.jose.jwk.source that return JWKSet Modifier and Type Method Description JWKSetDefaultJWKSetCache. get()Deprecated.JWKSetJWKSetCache. get()Deprecated.Gets the cached JWK set.JWKSetRemoteJWKSet. getCachedJWKSet()Deprecated.Returns the cached JWK set.JWKSetCachingJWKSetSource. getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context)JWKSetCachingJWKSetSource.RefreshCompletedEvent. getJWKSet()Returns the refreshed JWK set.JWKSetImmutableJWKSet. getJWKSet()Returns the JWK set.JWKSetJWKSetSource. getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context)Gets the JWK set.JWKSetJWKSetSourceWithHealthStatusReporting. getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context)JWKSetJWKSetWithTimestamp. getJWKSet()Deprecated.Returns the JWK set.JWKSetOutageTolerantJWKSetSource. getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context)JWKSetRateLimitedJWKSetSource. getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context)JWKSetRefreshAheadCachingJWKSetSource. getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context)JWKSetRefreshAheadCachingJWKSetSource.ScheduledRefreshCompletedEvent. getJWKSet()Returns the refreshed JWK set.JWKSetRetryingJWKSetSource. getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context)JWKSetURLBasedJWKSetSource. getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context)Methods in com.nimbusds.jose.jwk.source with parameters of type JWKSet Modifier and Type Method Description voidDefaultJWKSetCache. put(JWKSet jwkSet)Deprecated.voidJWKSetCache. put(JWKSet jwkSet)Deprecated.Puts the specified JWK set into the cache or clears the cache.static JWKSetCacheRefreshEvaluatorJWKSetCacheRefreshEvaluator. referenceComparison(JWKSet jwtSet)Returns a reference comparison evaluator for the specified JWK set.abstract booleanJWKSetCacheRefreshEvaluator. requiresRefresh(JWKSet jwkSet)Returnstrueif refresh of the JWK set is required.Constructors in com.nimbusds.jose.jwk.source with parameters of type JWKSet Constructor Description ImmutableJWKSet(JWKSet jwkSet)Creates a new JWK source backed by an immutable JWK set.JWKSetWithTimestamp(JWKSet jwkSet)Deprecated.Creates a new JWK set with a timestamp set to now.JWKSetWithTimestamp(JWKSet jwkSet, Date timestamp)Deprecated.Creates a new JWK set with timestamp.
-