encryptWithKey method

  1. @override
List<int> encryptWithKey(
  1. CipherKey key,
  2. List<int> input
)

Implementation

@override
List<int> encryptWithKey(CipherKey key, List<int> input) {
  _emptyContentValidation(input);
  return legacyCryptoModule.encryptWithKey(key, input);
}