twisted.conch.ssh.transport.SSHClientTransport._ssh_KEX_ECDH_REPLY(self, packet) method documentationtwisted.conch.ssh.transport.SSHClientTransport
          View Source
          
        
      Called to handle a reply to a ECDH exchange message(KEX_ECDH_INIT).
Like the handler for KEXDH_INIT, this message type has an overlapping value.  This method is called from ssh_KEX_DH_GEX_GROUP if that method detects a non-group key exchange is in progress.
Payload:
    string serverHostKey
    string server Elliptic Curve Diffie-Hellman public key
    string signature
We verify the host key and continue if it passes verificiation. Otherwise raise an exception and return.
| Parameters | packet | The message data. (type: bytes) | 
| Returns | A deferred firing when key exchange is complete. | |
| Function | _continue_KEX_ECDH_REPLY | Undocumented |