decode method
- @MPI(name: "_{mesh.name}.cipher.decode")
- CipherEntity cipher, {
- 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.');
}