@ThreadSafe public class RSAEncrypter extends Object implements JWEEncrypter
JWE objects. This class
is thread-safe.
Supports the following JWE algorithms:
Supports the following encryption methods:
| Modifier and Type | Field and Description |
|---|---|
protected Provider |
contentEncryptionProvider
The JCA provider for the content encryption,
null if not
specified (implies default one). |
protected Provider |
keyEncryptionProvider
The JCA provider for the key encryption,
null if not
specified (implies default one). |
protected Provider |
macProvider
The JCA provider for the MAC computation,
null if not
specified (implies default one). |
static Set<JWEAlgorithm> |
SUPPORTED_ALGORITHMS
The supported JWE algorithms.
|
static Set<EncryptionMethod> |
SUPPORTED_ENCRYPTION_METHODS
The supported encryption methods.
|
| Constructor and Description |
|---|
RSAEncrypter(RSAPublicKey publicKey)
Creates a new RSA encrypter.
|
| Modifier and Type | Method and Description |
|---|---|
JWECryptoParts |
encrypt(JWEHeader header,
byte[] bytes)
Encrypts the specified clear text of a
JWE object. |
RSAPublicKey |
getPublicKey()
Gets the public RSA key.
|
protected SecureRandom |
getSecureRandom()
Returns the secure random generator for this JWE provider.
|
void |
setContentEncryptionProvider(Provider provider)
Sets a specific JCA provider for the content encryption.
|
void |
setKeyEncryptionProvider(Provider provider)
Sets a specific JCA provider for the key encryption.
|
void |
setMACProvider(Provider provider)
Sets a specific JCA provider for MAC computation (where required by
the JWE encryption method).
|
void |
setProvider(Provider provider)
Sets a specific JCA provider, to be used for all operations.
|
void |
setSecureRandom(SecureRandom randomGen)
Sets a specific secure random generator for the initialisation
vector and other purposes requiring a random number.
|
Set<JWEAlgorithm> |
supportedAlgorithms()
Returns the names of the supported JWE algorithms.
|
Set<EncryptionMethod> |
supportedEncryptionMethods()
Returns the names of the supported encryption methods.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitsetContentEncryptionProvider, setKeyEncryptionProvider, setMACProvider, setSecureRandom, supportedAlgorithms, supportedEncryptionMethodssetProviderpublic static final Set<JWEAlgorithm> SUPPORTED_ALGORITHMS
public static final Set<EncryptionMethod> SUPPORTED_ENCRYPTION_METHODS
protected Provider keyEncryptionProvider
null if not
specified (implies default one).protected Provider contentEncryptionProvider
null if not
specified (implies default one).protected Provider macProvider
null if not
specified (implies default one).public RSAEncrypter(RSAPublicKey publicKey)
publicKey - The public RSA key. Must not be null.public RSAPublicKey getPublicKey()
public JWECryptoParts encrypt(JWEHeader header, byte[] bytes) throws JOSEException
JWEEncrypterJWE object.encrypt in interface JWEEncrypterheader - The JSON Web Encryption (JWE) header. Must specify a
supported JWE algorithm and must not be
null.bytes - The clear text to encrypt. Must not be null.JOSEException - If the JWE algorithm is not supported or if
encryption failed for some other reason.public Set<JWEAlgorithm> supportedAlgorithms()
JWEAlgorithmProvideralg JWE header parameter.supportedAlgorithms in interface JWEAlgorithmProviderpublic Set<EncryptionMethod> supportedEncryptionMethods()
JWEAlgorithmProviderenc JWE header parameter.supportedEncryptionMethods in interface JWEAlgorithmProviderpublic void setProvider(Provider provider)
AlgorithmProvidersetProvider in interface AlgorithmProviderprovider - The JCA provider, or null to use the default
one.public void setKeyEncryptionProvider(Provider provider)
JWEAlgorithmProvidersetKeyEncryptionProvider in interface JWEAlgorithmProviderprovider - The JCA provider, or null to use the default
one.public void setContentEncryptionProvider(Provider provider)
JWEAlgorithmProvidersetContentEncryptionProvider in interface JWEAlgorithmProviderprovider - The JCA provider, or null to use the default
one.public void setMACProvider(Provider provider)
JWEAlgorithmProvidersetMACProvider in interface JWEAlgorithmProviderprovider - The JCA provider, or null to use the default
one.public void setSecureRandom(SecureRandom randomGen)
JWEAlgorithmProvidersetSecureRandom in interface JWEAlgorithmProviderrandomGen - The secure random generator, or null to use
the default one.protected SecureRandom getSecureRandom()
Copyright © 2015 Connect2id Ltd.. All Rights Reserved.