encryptWithKey abstract method

Future<EncryptionResult> encryptWithKey(
  1. List<int> data,
  2. EncryptionKey key
)

Provided some binary data and a EncryptionKey (key type dependant on the encryption scheme being used) Return an EncryptionResult

Implementation

Future<EncryptionResult> encryptWithKey(List<int> data, EncryptionKey key);