Class AbstractEncryptingService
- java.lang.Object
-
- org.flowable.ui.admin.service.engine.AbstractEncryptingService
-
- Direct Known Subclasses:
AppVersionClientService,EndpointUserProfileService,ServerConfigService
public abstract class AbstractEncryptingService extends Object
Superclass for services that want to encrypt certain properties- Author:
- jbarrez
-
-
Field Summary
Fields Modifier and Type Field Description static StringAES_CYPHERstatic StringAES_KEYprotected IvParameterSpecinitializationVectorSpecprotected SecretKeySpecsecretKeySpec
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractEncryptingService(FlowableAdminAppProperties properties)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Stringdecrypt(String encrypted)protected Stringencrypt(String value)
-
-
-
Field Detail
-
AES_KEY
public static final String AES_KEY
- See Also:
- Constant Field Values
-
AES_CYPHER
public static final String AES_CYPHER
- See Also:
- Constant Field Values
-
initializationVectorSpec
protected IvParameterSpec initializationVectorSpec
-
secretKeySpec
protected SecretKeySpec secretKeySpec
-
-
Constructor Detail
-
AbstractEncryptingService
protected AbstractEncryptingService(FlowableAdminAppProperties properties)
-
-