encrypt method

  1. @override
EncryptedData encrypt(
  1. List<int> input
)

Implementation

@override
EncryptedData encrypt(List<int> input) {
  return EncryptedData.from(
      cryptor.encryptWithKey(cipherKey, input), List<int>.empty());
}