@ThreadSafe public class RSASSAVerifier extends Object implements JWSVerifier
JWS objects. This class is thread-safe.
Supports the following JSON Web Algorithms (JWAs):
JWSAlgorithm.RS256
JWSAlgorithm.RS384
JWSAlgorithm.RS512
JWSAlgorithm.PS256
JWSAlgorithm.PS384
JWSAlgorithm.PS512
Accepts all registered JWS header parameters. Use setAcceptedAlgorithms(java.util.Set<com.nimbusds.jose.JWSAlgorithm>) to
restrict the acceptable JWS algorithms.
| Modifier and Type | Field and Description |
|---|---|
protected Provider |
provider
The underlying cryptographic provider,
null if not specified
(implies default one). |
static Set<JWSAlgorithm> |
SUPPORTED_ALGORITHMS
The supported JWS algorithms.
|
| Constructor and Description |
|---|
RSASSAVerifier(RSAPublicKey publicKey)
Creates a new RSA Signature-Scheme-with-Appendix (RSASSA) verifier.
|
| Modifier and Type | Method and Description |
|---|---|
Set<JWSAlgorithm> |
getAcceptedAlgorithms()
Gets the names of the accepted JWS algorithms.
|
Set<String> |
getIgnoredCriticalHeaderParameters()
Gets the names of the critical JWS header parameters to ignore.
|
RSAPublicKey |
getPublicKey()
Gets the public RSA key.
|
protected static Signature |
getRSASignerAndVerifier(JWSAlgorithm alg,
Provider provider)
Gets a signer and verifier for the specified RSASSA-based JSON Web
Algorithm (JWA).
|
void |
setAcceptedAlgorithms(Set<JWSAlgorithm> acceptedAlgs)
Sets the names of the accepted JWS algorithms.
|
void |
setIgnoredCriticalHeaderParameters(Set<String> headers)
Sets the names of the critical JWS header parameters to ignore.
|
void |
setProvider(Provider provider)
Sets a specific JCA provider, to be used for all operations.
|
Set<JWSAlgorithm> |
supportedAlgorithms()
Returns the names of the supported JWS algorithms.
|
boolean |
verify(JWSHeader header,
byte[] signedContent,
Base64URL signature)
Verifies the specified
signature of a
JWS object. |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitsupportedAlgorithmssetProviderpublic static final Set<JWSAlgorithm> SUPPORTED_ALGORITHMS
public RSASSAVerifier(RSAPublicKey publicKey)
publicKey - The public RSA key. Must not be null.public RSAPublicKey getPublicKey()
public Set<JWSAlgorithm> getAcceptedAlgorithms()
JWSVerifieralg JWS header parameter.getAcceptedAlgorithms in interface JWSVerifierJWSVerifier.setAcceptedAlgorithms(java.util.Set<com.nimbusds.jose.JWSAlgorithm>)public void setAcceptedAlgorithms(Set<JWSAlgorithm> acceptedAlgs)
JWSVerifieralg JWS header parameter.
For JWS verifiers that support multiple JWS algorithms this method can be used to indicate that only a subset should be accepted for processing.
setAcceptedAlgorithms in interface JWSVerifieracceptedAlgs - The accepted JWS algorithms. Must be a subset of
the supported algorithms and not null.public Set<String> getIgnoredCriticalHeaderParameters()
JWSVerifiercrit header parameter. The JWS
verifier should not ignore critical headers by default.getIgnoredCriticalHeaderParameters in interface JWSVerifiernull if none.public void setIgnoredCriticalHeaderParameters(Set<String> headers)
JWSVerifiercrit header parameter. The JWS
verifier should not ignore critical headers by default. Use this
setter to delegate processing of selected critical headers to the
application.setIgnoredCriticalHeaderParameters in interface JWSVerifierheaders - The names of the critical JWS header parameters to
ignore, empty or null if none.public boolean verify(JWSHeader header, byte[] signedContent, Base64URL signature) throws JOSEException
JWSVerifiersignature of a
JWS object.verify in interface JWSVerifierheader - The JSON Web Signature (JWS) header. Must
specify an accepted JWS algorithm, must contain
only accepted header parameters, and must not be
null.signedContent - The signing input. Must not be null.signature - The signature part of the JWS object. Must not
be null.true if the signature was successfully verified,
else false.JOSEException - If the JWS algorithm is not accepted, if a
header parameter is not accepted, or if
signature verification failed for some other
reason.protected static Signature getRSASignerAndVerifier(JWSAlgorithm alg, Provider provider) throws JOSEException
alg - The JSON Web Algorithm (JWA). Must be supported and not
null.JOSEException - If the algorithm is not supported.public Set<JWSAlgorithm> supportedAlgorithms()
JWSAlgorithmProvideralg JWS header parameter.supportedAlgorithms in interface JWSAlgorithmProviderpublic void setProvider(Provider provider)
AlgorithmProvidersetProvider in interface AlgorithmProviderprovider - The JCA provider, or null to use the default
one.Copyright © 2015 Connect2id Ltd.. All Rights Reserved.