Package com.nimbusds.jose.crypto
Class RSASSAVerifier
- java.lang.Object
-
- com.nimbusds.jose.crypto.impl.BaseJWSProvider
-
- com.nimbusds.jose.crypto.impl.RSASSAProvider
-
- com.nimbusds.jose.crypto.RSASSAVerifier
-
- All Implemented Interfaces:
CriticalHeaderParamsAware
,JCAAware<JCAContext>
,JOSEProvider
,JWSProvider
,JWSVerifier
@ThreadSafe public class RSASSAVerifier extends RSASSAProvider implements JWSVerifier, CriticalHeaderParamsAware
RSA Signature-Scheme-with-Appendix (RSASSA) verifier ofJWS objects
. Expects a public RSA key.See RFC 7518, sections 3.3 and 3.5 for more information.
This class is thread-safe.
Supports the following algorithms:
JWSAlgorithm.RS256
JWSAlgorithm.RS384
JWSAlgorithm.RS512
JWSAlgorithm.PS256
JWSAlgorithm.PS384
JWSAlgorithm.PS512
Supports the
BouncyCastle FIPS provider
for the PSxxx family of JWS algorithms.- Version:
- 2015-06-02
- Author:
- Vladimir Dzhuvinov
-
-
Field Summary
-
Fields inherited from class com.nimbusds.jose.crypto.impl.RSASSAProvider
SUPPORTED_ALGORITHMS
-
-
Constructor Summary
Constructors Constructor Description RSASSAVerifier(RSAKey rsaJWK)
Creates a new RSA Signature-Scheme-with-Appendix (RSASSA) verifier.RSASSAVerifier(RSAPublicKey publicKey)
Creates a new RSA Signature-Scheme-with-Appendix (RSASSA) verifier.RSASSAVerifier(RSAPublicKey publicKey, Set<String> defCritHeaders)
Creates a new RSA Signature-Scheme-with-Appendix (RSASSA) verifier.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<String>
getDeferredCriticalHeaderParams()
Returns the names of the critical (crit
) header parameters that are deferred to the application for processing and will be ignored by the JWS verifier / JWE decrypter.Set<String>
getProcessedCriticalHeaderParams()
Returns the names of the critical (crit
) header parameters that are understood and processed by the JWS verifier / JWE decrypter.RSAPublicKey
getPublicKey()
Gets the public RSA key.boolean
verify(JWSHeader header, byte[] signedContent, Base64URL signature)
Verifies the specifiedsignature
of aJWS object
.-
Methods inherited from class com.nimbusds.jose.crypto.impl.BaseJWSProvider
getJCAContext, supportedJWSAlgorithms
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.nimbusds.jose.jca.JCAAware
getJCAContext
-
Methods inherited from interface com.nimbusds.jose.JWSProvider
supportedJWSAlgorithms
-
-
-
-
Constructor Detail
-
RSASSAVerifier
public RSASSAVerifier(RSAPublicKey publicKey)
Creates a new RSA Signature-Scheme-with-Appendix (RSASSA) verifier.- Parameters:
publicKey
- The public RSA key. Must not benull
.
-
RSASSAVerifier
public RSASSAVerifier(RSAKey rsaJWK) throws JOSEException
Creates a new RSA Signature-Scheme-with-Appendix (RSASSA) verifier.- Parameters:
rsaJWK
- The RSA JSON Web Key (JWK). Must not benull
.- Throws:
JOSEException
- If the RSA JWK extraction failed.
-
RSASSAVerifier
public RSASSAVerifier(RSAPublicKey publicKey, Set<String> defCritHeaders)
Creates a new RSA Signature-Scheme-with-Appendix (RSASSA) verifier.- Parameters:
publicKey
- The public RSA key. Must not benull
.defCritHeaders
- The names of the critical header parameters that are deferred to the application for processing, empty set ornull
if none.
-
-
Method Detail
-
getPublicKey
public RSAPublicKey getPublicKey()
Gets the public RSA key.- Returns:
- The public RSA key.
-
getProcessedCriticalHeaderParams
public Set<String> getProcessedCriticalHeaderParams()
Description copied from interface:CriticalHeaderParamsAware
Returns the names of the critical (crit
) header parameters that are understood and processed by the JWS verifier / JWE decrypter.- Specified by:
getProcessedCriticalHeaderParams
in interfaceCriticalHeaderParamsAware
- Returns:
- The names of the critical header parameters that are understood and processed, empty set if none.
-
getDeferredCriticalHeaderParams
public Set<String> getDeferredCriticalHeaderParams()
Description copied from interface:CriticalHeaderParamsAware
Returns the names of the critical (crit
) header parameters that are deferred to the application for processing and will be ignored by the JWS verifier / JWE decrypter.- Specified by:
getDeferredCriticalHeaderParams
in interfaceCriticalHeaderParamsAware
- Returns:
- The names of the critical header parameters that are deferred to the application for processing, empty set if none.
-
verify
public boolean verify(JWSHeader header, byte[] signedContent, Base64URL signature) throws JOSEException
Description copied from interface:JWSVerifier
Verifies the specifiedsignature
of aJWS object
.- Specified by:
verify
in interfaceJWSVerifier
- Parameters:
header
- The JSON Web Signature (JWS) header. Must specify a supported JWS algorithm and must not benull
.signedContent
- The signing input. Must not benull
.signature
- The signature part of the JWS object. Must not benull
.- Returns:
true
if the signature was successfully verified,false
if the signature is invalid or if a critical header is neither supported nor marked for deferral to the application.- Throws:
JOSEException
- If the JWS algorithm is not supported, or if signature verification failed for some other internal reason.
-
-