Package | Description |
---|---|
com.nimbusds.jose.jwk |
JSON Web Key (JWK) classes.
|
com.nimbusds.jose.jwk.source |
Interface and utilities for sourcing JSON Web Keys (JWKs).
|
Modifier and Type | Method and Description |
---|---|
static JWKSet |
JWKSet.load(File file)
Loads a JSON Web Key (JWK) set from the specified file.
|
static JWKSet |
JWKSet.load(KeyStore keyStore,
PasswordLookup pwLookup)
Loads a JSON Web Key (JWK) set from the specified JCA key store.
|
static JWKSet |
JWKSet.load(URL url)
Loads a JSON Web Key (JWK) set from the specified URL.
|
static JWKSet |
JWKSet.load(URL url,
int connectTimeout,
int readTimeout,
int sizeLimit)
Loads a JSON Web Key (JWK) set from the specified URL.
|
static JWKSet |
JWKSet.parse(net.minidev.json.JSONObject json)
Parses the specified JSON object representing a JSON Web Key (JWK)
set.
|
static JWKSet |
JWKSet.parse(String s)
Parses the specified string representing a JSON Web Key (JWK) set.
|
JWKSet |
JWKSet.toPublicJWKSet()
Returns a copy of this JSON Web Key (JWK) set with all private keys
and parameters removed.
|
Modifier and Type | Method and Description |
---|---|
List<JWK> |
JWKSelector.select(JWKSet jwkSet)
Selects the keys from the specified JWK set according to the
matcher's criteria.
|
Modifier and Type | Method and Description |
---|---|
JWKSet |
RemoteJWKSet.getCachedJWKSet()
Returns the cached JWK set.
|
JWKSet |
ImmutableJWKSet.getJWKSet()
Returns the JWK set.
|
Constructor and Description |
---|
ImmutableJWKSet(JWKSet jwkSet)
Creates a new JWK source backed by an immutable JWK set.
|
Copyright © 2017 Connect2id Ltd.. All rights reserved.