encode method

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

Encode the data object, actual encrypt or anonymize. 数据编码,实际根据不同的密态场景底层可能是加密或匿名化.

Implementation

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