Class BinaryDbValueEncryptor
java.lang.Object
de.xima.fc.persistence.impl.security.BinaryDbValueEncryptor
- All Implemented Interfaces:
DbValueEncryptor<byte[],byte[]>
Encryptor that encrypts and decrypts byte array values.
- Since:
- 8.5.0
- Author:
- Norman Lorenz
-
Constructor Details
-
BinaryDbValueEncryptor
public BinaryDbValueEncryptor()
-
-
Method Details
-
decrypt
Description copied from interface:DbValueEncryptorDecrypts the given value.- Specified by:
decryptin interfaceDbValueEncryptor<byte[],byte[]> - Parameters:
value- The value to decrypt.scope- Optional. The scope for decryption, can be used to differentiate between different encryption contexts.- Returns:
- The decrypted value.
- Throws:
FcEncryptionException- If decryption fails.
-
encrypt
Description copied from interface:DbValueEncryptorEncrypts the given value.- Specified by:
encryptin interfaceDbValueEncryptor<byte[],byte[]> - Parameters:
value- The value to encrypt.scope- Optional. The scope for encryption, can be used to differentiate between different encryption contexts.- Returns:
- The encrypted value.
- Throws:
FcEncryptionException- If encryption fails.
-
getEncryptedType
Description copied from interface:DbValueEncryptorGets the class type of the encrypted value.- Specified by:
getEncryptedTypein interfaceDbValueEncryptor<byte[],byte[]> - Returns:
- The class type of the encrypted value.
-
getUnencryptedType
Description copied from interface:DbValueEncryptorGets the class type of the unencrypted value.- Specified by:
getUnencryptedTypein interfaceDbValueEncryptor<byte[],byte[]> - Returns:
- The class type of the unencrypted value.
-