Uses of Class
com.nimbusds.jose.jwk.JWKSet
Packages that use JWKSet
Package
Description
Implementations of standard Javascript Object Signing and Encryption (JOSE)
algorithms.
JSON Web Key (JWK) classes.
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 JWKSetModifierConstructorDescriptionMultiEncrypter(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 JWKSetModifier and TypeMethodDescriptionJWKSet.filter(JWKMatcher jwkMatcher) Filters the keys in this JWK set.static JWKSetLoads a JWK set from the specified file.static JWKSetJWKSet.load(InputStream inputStream) Loads a JWK set from the specified input stream.static JWKSetLoads a JWK set from the specified URL.static JWKSetLoads a JWK set from the specified URL.static JWKSetLoads 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 JWKSetParses the specified string representing a JWK set.static JWKSetParses the specified JSON object representing a JWK set.JWKSet.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 -
Uses of JWKSet in com.nimbusds.jose.jwk.source
Methods in com.nimbusds.jose.jwk.source that return JWKSetModifier and TypeMethodDescriptionDefaultJWKSetCache.get()Deprecated.JWKSetCache.get()Deprecated.Gets the cached JWK set.RemoteJWKSet.getCachedJWKSet()Deprecated.Returns the cached JWK set.CachingJWKSetSource.getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context) CachingJWKSetSource.RefreshCompletedEvent.getJWKSet()Returns the refreshed JWK set.ImmutableJWKSet.getJWKSet()Returns the JWK set.JWKSetSource.getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context) Gets the JWK set.JWKSetSourceWithHealthStatusReporting.getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context) JWKSetWithTimestamp.getJWKSet()Deprecated.Returns the JWK set.OutageTolerantJWKSetSource.getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context) RateLimitedJWKSetSource.getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context) RefreshAheadCachingJWKSetSource.getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context) RefreshAheadCachingJWKSetSource.ScheduledRefreshCompletedEvent.getJWKSet()Returns the refreshed JWK set.RetryingJWKSetSource.getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context) URLBasedJWKSetSource.getJWKSet(JWKSetCacheRefreshEvaluator refreshEvaluator, long currentTime, C context) Methods in com.nimbusds.jose.jwk.source with parameters of type JWKSetModifier and TypeMethodDescriptionvoidDeprecated.voidDeprecated.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 JWKSetModifierConstructorDescriptionImmutableJWKSet(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.