Package | Description |
---|---|
com.nimbusds.jose.jwk.source |
JSON Web Key (JWK) sourcing interface and utilities.
|
com.nimbusds.jose.mint |
JSON Web Signature (JWS) minting framework.
|
com.nimbusds.jose.proc |
Framework for application-specific verification and decryption of JOSE
objects (with arbitrary payloads).
|
Modifier and Type | Class and Description |
---|---|
class |
ImmutableJWKSet<C extends SecurityContext>
JSON Web Key (JWK) source backed by an immutable JWK set.
|
class |
ImmutableSecret<C extends SecurityContext>
JSON Web Key (JWK) source backed by an immutable secret.
|
class |
JWKSecurityContextJWKSet
A
JWKSource backed by keys found in the JWKSecurityContext . |
class |
RemoteJWKSet<C extends SecurityContext>
Remote JSON Web Key (JWK) source specified by a JWK set URL.
|
Modifier and Type | Method and Description |
---|---|
JWKSource<C> |
JWSMinterConfiguration.getJWKSource()
Gets the source for looking up JWKs.
|
JWKSource<C> |
DefaultJWSMinter.getJWKSource() |
Modifier and Type | Method and Description |
---|---|
void |
JWSMinterConfiguration.setJWKSource(JWKSource<C> jwkSource)
Sets the source for to look up JWKs from.
|
void |
DefaultJWSMinter.setJWKSource(JWKSource<C> jwkSource) |
Modifier and Type | Method and Description |
---|---|
static <C extends SecurityContext> |
JWSAlgorithmFamilyJWSKeySelector.fromJWKSource(JWKSource<C> jwkSource)
Queries the given
JWKSource for keys, creating a
JWSAlgorithmFamilyJWSKeySelector based on the RSA or EC key
type, whichever comes back first. |
Constructor and Description |
---|
JWEDecryptionKeySelector(JWEAlgorithm jweAlg,
EncryptionMethod jweEnc,
JWKSource<C> jwkSource)
Creates a new decryption key selector.
|
JWSAlgorithmFamilyJWSKeySelector(JWSAlgorithm.Family jwsAlgFamily,
JWKSource<C> jwkSource)
Creates a
JWSKeySelector that matches any algorithm from the
given JWSAlgorithm.Family . |
JWSVerificationKeySelector(JWSAlgorithm jwsAlg,
JWKSource<C> jwkSource)
Creates a new JWS verification key selector.
|
JWSVerificationKeySelector(Set<JWSAlgorithm> jwsAlgs,
JWKSource<C> jwkSource)
Creates a new JWS verification key selector.
|
Copyright © 2021 Connect2id Ltd.. All rights reserved.