recode method

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

Recode the data object, actual rencrypt or reanonymize. 数据重编码,实际根据不同的密态场景底层可能是重加密或重匿名.

Implementation

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