You are developing a server application that will transmit sensitive information on a network.

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::SSl3, true);
C. SslStream ^ssl = gcnew
    SslStream(Client->GetStream());ssl->AuthenticateAsServer(certificate, false, 
    SslProtocols::SSl2, true);
D. SslStream ^ssl = gcnew
    SslStream(Client->GetStream());ssl->AuthenticateAsServer(certificate, false, SslProtocols::Tls, 
    true);


Answer: D

No comments:

Post a Comment