handshake method

  1. @override
Future<String?> handshake(
  1. CipherHello hello, {
  2. Context? ctx,
})
override

Handshake negotiate multiparty cipher keys.

Parameters:

  • hello: hello Returns:
  • string cipher group

Implementation

@override
Future<String?> handshake(CipherHello hello, {Context? ctx}) async {
  return await _h.invoke(this, _methods['handshake']!, [hello], ctx);
}