Interface Encryptor
-
- All Known Implementing Classes:
EncryptorImpl
public interface Encryptor
Responsible for encrypting/decrypting bytes. Implementations are intended to be thread-safe.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]
decrypt(byte[] bytes)
Decrypts the given byte array.byte[]
encrypt(byte[] bytes)
Encrypts the given byte array.
-