handshake method

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

Handshake negotiate multiparty cipher keys.

Parameters:

  • hello: hello Returns:
  • string cipher group

Implementation

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