Interface IDBBinaryEncryptor
-
- All Known Implementing Classes:
DBBinaryEncryptor
public interface IDBBinaryEncryptor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]
decrypt(byte[] value)
byte[]
encrypt(byte[] value)
boolean
isMigrate()
void
migrate(EDBEncryptionAlgorithm algorithm, String password, boolean active)
-
-
-
Method Detail
-
encrypt
byte[] encrypt(byte[] value) throws org.jasypt.exceptions.EncryptionOperationNotPossibleException, org.jasypt.exceptions.EncryptionInitializationException
- Throws:
org.jasypt.exceptions.EncryptionOperationNotPossibleException
org.jasypt.exceptions.EncryptionInitializationException
-
decrypt
byte[] decrypt(byte[] value) throws org.jasypt.exceptions.EncryptionOperationNotPossibleException, org.jasypt.exceptions.EncryptionInitializationException
- Throws:
org.jasypt.exceptions.EncryptionOperationNotPossibleException
org.jasypt.exceptions.EncryptionInitializationException
-
migrate
void migrate(EDBEncryptionAlgorithm algorithm, String password, boolean active)
-
isMigrate
boolean isMigrate()
-
-