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