@ThreadSafe public class RSASSASigner extends java.lang.Object implements JWSSigner
JWS objects. This class is thread-safe.
Supports the following JSON Web Algorithms (JWAs):
| 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 |
|---|
RSASSASigner(java.security.interfaces.RSAPrivateKey privateKey)
Creates a new RSA Signature-Scheme-with-Appendix (RSASSA) signer.
|
| Modifier and Type | Method and Description |
|---|---|
java.security.interfaces.RSAPrivateKey |
getPrivateKey()
Gets the private RSA key.
|
protected static java.security.Signature |
getRSASignerAndVerifier(JWSAlgorithm alg,
java.security.Provider provider)
Gets a signer and verifier for the specified RSASSA-based JSON Web
Algorithm (JWA).
|
void |
setProvider(java.security.Provider provider)
Sets a specific JCA provider, to be used for all operations.
|
Base64URL |
sign(ReadOnlyJWSHeader header,
byte[] signingInput)
Signs the specified
input of a
JWS object. |
java.util.Set<JWSAlgorithm> |
supportedAlgorithms()
Returns the names of the supported JWS algorithms.
|
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 RSASSASigner(java.security.interfaces.RSAPrivateKey privateKey)
privateKey - The private RSA key. Must not be null.public java.security.interfaces.RSAPrivateKey getPrivateKey()
public Base64URL sign(ReadOnlyJWSHeader header, byte[] signingInput) throws JOSEException
JWSSignerinput of a
JWS object.sign in interface JWSSignerheader - The JSON Web Signature (JWS) header. Must
specify a supported JWS algorithm and must not
be null.signingInput - The input to sign. Must not be null.JOSEException - If the JWS algorithm is not supported or if
signing failed for some other reason.protected static java.security.Signature getRSASignerAndVerifier(JWSAlgorithm alg, java.security.Provider provider) throws JOSEException
alg - The JSON Web Algorithm (JWA). Must be supported and not
null.JOSEException - If the algorithm is not supported.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.