Interface BytesEncryptor
- All Known Implementing Classes:
AesBytesEncryptor
,BouncyCastleAesCbcBytesEncryptor
,BouncyCastleAesGcmBytesEncryptor
public interface BytesEncryptor
Service interface for symmetric data encryption.
-
Method Summary
-
Method Details
-
encrypt
byte[] encrypt(byte[] byteArray) Encrypt the byte array. -
decrypt
byte[] decrypt(byte[] encryptedByteArray) Decrypt the byte array.
-