Defines encryption and decryption operations for ciphers. Encrypts the given data.
@override List<int> encrypt(List<int> data) { cleanCrypts(); return currentCrypt.encrypt(data); }