Question:You are developing a server application that will transmit sensitive information on a network. You create an X509Certificate object named certificate and a TcpClient object named client. You need to create an SslStream to communicate by using the Transport Layer Security 1.0 protocol. Which code segment should you use?
A SslStream= ssl = gcnew SslStream(Client->GetStream()); ssl->AuthenticateAsServer(certificate, false, SslProtocols::None, true);
B SslStream =ssl = gcnew SslStream(Client->GetStream()); ssl->AuthenticateAsServer(certificate, false, SslProtocols::Tls, true);
C SslStream =ssl = gcnew SslStream(Client->GetStream()); ssl->AuthenticateAsServer(certificate, false, SslProtocols::Ssl3, true);
D SslStream =ssl = gcnew SslStream(Client->GetStream()); ssl->AuthenticateAsServer(certificate, false, SslProtocols::Ssl2, true);