@ThreadSafe public class MACVerifier extends java.lang.Object implements JWSVerifier
JWS objects. This class is thread-safe.
Supports the following JSON Web Algorithms (JWAs):
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 java.security.Provider |
provider
The underlying cryptographic provider,
null if not specified
(implies default one). |
static java.util.Set<JWSAlgorithm> |
SUPPORTED_ALGORITHMS
The supported JWS algorithms.
|
| Constructor and Description |
|---|
MACVerifier(byte[] sharedSecret)
Creates a new Message Authentication (MAC) verifier.
|
MACVerifier(java.lang.String sharedSecretString)
Creates a new Message Authentication (MAC) verifier.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<JWSAlgorithm> |
getAcceptedAlgorithms()
Gets the names of the accepted JWS algorithms.
|
java.util.Set<java.lang.String> |
getIgnoredCriticalHeaderParameters()
Gets the names of the critical JWS header parameters to ignore.
|
protected static java.lang.String |
getJCAAlgorithmName(JWSAlgorithm alg)
Gets the matching Java Cryptography Architecture (JCA) algorithm
name for the specified HMAC-based JSON Web Algorithm (JWA).
|
byte[] |
getSharedSecret()
Gets the shared secret.
|
java.lang.String |
getSharedSecretString()
Gets the shared secret as a UTF-8 encoded string.
|
void |
setAcceptedAlgorithms(java.util.Set<JWSAlgorithm> acceptedAlgs)
Sets the names of the accepted JWS algorithms.
|
void |
setIgnoredCriticalHeaderParameters(java.util.Set<java.lang.String> headers)
Sets the names of the critical JWS header parameters to ignore.
|
void |
setProvider(java.security.Provider provider)
Sets a specific JCA provider, to be used for all operations.
|
java.util.Set<JWSAlgorithm> |
supportedAlgorithms()
Returns the names of the supported JWS algorithms.
|
boolean |
verify(ReadOnlyJWSHeader 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 java.util.Set<JWSAlgorithm> SUPPORTED_ALGORITHMS
protected java.security.Provider provider
null if not specified
(implies default one).public MACVerifier(byte[] sharedSecret)
sharedSecret - The shared secret. Must not be null.public MACVerifier(java.lang.String sharedSecretString)
sharedSecretString - The shared secret as a UTF-8 encoded
string. Must not be null.public java.util.Set<JWSAlgorithm> getAcceptedAlgorithms()
JWSVerifieralg JWS header parameter.getAcceptedAlgorithms in interface JWSVerifierpublic void setAcceptedAlgorithms(java.util.Set<JWSAlgorithm> acceptedAlgs)
JWSVerifieralg JWS header parameter.setAcceptedAlgorithms in interface JWSVerifieracceptedAlgs - The accepted JWS algorithms. Must be a subset of
the supported algorithms and not null.public java.util.Set<java.lang.String> getIgnoredCriticalHeaderParameters()
JWSVerifiercrit header parameter. The JWS
verifier should not ignore critical headers by default.getIgnoredCriticalHeaderParameters in interface JWSVerifiernull if none.public void setIgnoredCriticalHeaderParameters(java.util.Set<java.lang.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(ReadOnlyJWSHeader 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 java.lang.String getJCAAlgorithmName(JWSAlgorithm alg) throws JOSEException
alg - The JSON Web Algorithm (JWA). Must be supported and not
null.JOSEException - If the algorithm is not supported.public byte[] getSharedSecret()
public java.lang.String getSharedSecretString()
public java.util.Set<JWSAlgorithm> supportedAlgorithms()
JWSAlgorithmProvideralg JWS header parameter.supportedAlgorithms in interface JWSAlgorithmProviderpublic void setProvider(java.security.Provider provider)
AlgorithmProvidersetProvider in interface AlgorithmProviderprovider - The JCA provider, or null to use the default
one.Copyright © 2014 Connect2id Ltd.. All Rights Reserved.