decrypt method

  1. @MPI(name: "mesh.crypt.decrypt")
Future<Uint8List?> decrypt(
  1. Uint8List buf,
  2. Map<String, Uint8List> keys, {
  3. Context? ctx,
})

Decrypt binary to decrypted binary.

Implementation

@MPI(name: "mesh.crypt.decrypt")
Future<Uint8List?> decrypt(Uint8List buf, Map<String, Uint8List> keys, {Context? ctx}) {
  throw UnimplementedError('decrypt() has not been implemented.');
}