SSL,TLS传输过程中,哪个HandShake的具体步骤是什么???public void OnVerify(SecureSocket socket, Certificate remote, CertificateChain chain, VerifyEventArgs e) 
{
appendText("\r\nThe certificate of the FTP server:",4);
appendText(remote.ToString(true) + "\r\n",4);
// certificate chain verification can be placed here
                           已经知道到此,Server已经发送证书remote,具体下一步,客户端怎样提取协商算法,怎样加密一个随机字符串,怎样发送回接受方。具体格式具体...
谢谢各位大虾指教。

}