Class SecretEncryption
java.lang.Object
io.micronaut.security.token.jwt.encryption.AbstractEncryptionConfiguration
io.micronaut.security.token.jwt.encryption.secret.SecretEncryption
- All Implemented Interfaces:
 EncryptionConfiguration
Secret encryption configuration.
- Since:
 - 1.0
 - Author:
 - Sergio del Amo
 
- 
Field Summary
Fields inherited from class io.micronaut.security.token.jwt.encryption.AbstractEncryptionConfiguration
algorithm, method - 
Constructor Summary
ConstructorsConstructorDescriptionSecretEncryption(SecretEncryptionConfiguration secretEncryptionConfiguration)  - 
Method Summary
Modifier and TypeMethodDescriptionprotected com.nimbusds.jose.JWEDecrypterBuild the appropriate decrypter.protected com.nimbusds.jose.JWEEncrypterBuild the appropriate encrypter.voidSets secret byte[] with a string with UTF_8 charset.booleansupports(com.nimbusds.jose.JWEAlgorithm algorithm, com.nimbusds.jose.EncryptionMethod method) Whether this encryption configuration supports this algorithm and encryption method.Methods inherited from class io.micronaut.security.token.jwt.encryption.AbstractEncryptionConfiguration
decrypt, encrypt, getAlgorithm, getMethod, setAlgorithm, setMethod 
- 
Constructor Details
- 
SecretEncryption
- Parameters:
 secretEncryptionConfiguration- Instance ofSecretEncryptionConfiguration
 
 - 
 - 
Method Details
- 
supports
public boolean supports(com.nimbusds.jose.JWEAlgorithm algorithm, com.nimbusds.jose.EncryptionMethod method) Description copied from interface:EncryptionConfigurationWhether this encryption configuration supports this algorithm and encryption method.- Parameters:
 algorithm- the encryption algorithmmethod- the encryption method- Returns:
 - whether this encryption configuration supports this algorithm and encryption method
 
 - 
supportedAlgorithmsMessage
- Returns:
 - message explaining the supported algorithms
 
 - 
buildEncrypter
protected com.nimbusds.jose.JWEEncrypter buildEncrypter() throws com.nimbusds.jose.KeyLengthExceptionDescription copied from class:AbstractEncryptionConfigurationBuild the appropriate encrypter.- Specified by:
 buildEncrypterin classAbstractEncryptionConfiguration- Returns:
 - the appropriate encrypter
 - Throws:
 com.nimbusds.jose.KeyLengthException
 - 
buildDecrypter
protected com.nimbusds.jose.JWEDecrypter buildDecrypter() throws com.nimbusds.jose.KeyLengthExceptionDescription copied from class:AbstractEncryptionConfigurationBuild the appropriate decrypter.- Specified by:
 buildDecrypterin classAbstractEncryptionConfiguration- Returns:
 - the appropriate decrypter
 - Throws:
 com.nimbusds.jose.KeyLengthException
 - 
getSecret
- Returns:
 - a string build the secret byte[] and UTF_8 charset
 
 - 
setSecret
Sets secret byte[] with a string with UTF_8 charset.- Parameters:
 secret- UTF_8 string
 
 -