decrypt method

  1. @override
Future<Uint8List?> decrypt(
  1. Uint8List buf,
  2. Map<String, Uint8List> keys, {
  3. Context? ctx,
})
override

Decrypt binary to decrypted binary.

Implementation

@override
Future<Uint8List?> decrypt(
  Uint8List buf,
  Map<String, Uint8List> keys, {
  Context? ctx,
}) async {
  return await _h.invoke(this, _methods['decrypt']!, [buf, keys], ctx);
}