serve method

  1. @MPI(name: "_{mesh.name}.cipher.serve")
Future<String?> serve(
  1. String suite, {
  2. Context? ctx,
})

Serve will Encrypt or Anonymize. 提供加密或匿名服务托管能力,会把对应的密态服务发布为一个服务接口.

Implementation

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