recode method

  1. @override
Future<Uint8List?> recode(
  1. CipherTxEntity cipher, {
  2. Context? ctx,
})
override

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

Implementation

@override
Future<Uint8List?> recode(CipherTxEntity cipher, {Context? ctx}) async {
  return await _h.invoke(this, _methods['recode']!, [cipher], ctx);
}