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 = new SslStream(client.GetStream());
ssl.AuthenticateAsServer(
certificate, false, SslProtocols.Ssl2, true); 

B 

SslStream ssl = new SslStream(client.GetStream());
ssl.AuthenticateAsServer(
certificate, false, SslProtocols.None, true);

 

C SslStream ssl = new SslStream(client.GetStream());
ssl.AuthenticateAsServer(
certificate, false, SslProtocols.Tls, true); 

D SslStream ssl = new SslStream(client.GetStream());
ssl.AuthenticateAsServer(
certificate, false, SslProtocols.Ssl3, true); 

+ Answer
+ Report
Total Preview: 758

Copyright © 2024. Powered by Intellect Software Ltd