decode method

  1. @MPI(name: "_{mesh.name}.cipher.decode")
Future<Uint8List?> decode(
  1. CipherEntity cipher, {
  2. Context? ctx,
})

Decode the data object, actual dencrypt or deanonymize. 数据解码,实际根据不同的密态场景底层可能是解密或去匿名化.

Implementation

@MPI(name: "_{mesh.name}.cipher.decode")
Future<Uint8List?> decode(CipherEntity cipher, {Context? ctx}) {
  throw UnimplementedError('decode() has not been implemented.');
}