C# - secure `sockets` with SSL
hi i have a socket connection (server) developed with methods available in
using System.开发者_运维问答Net.Sockets;
using System.Net;
is it possible to secure the data communication in this sockets ? specially implement SSL ? any examples ?
You could use an SslStream. The documentation link contains an example of a TCP server and a client which communicate over SSL.
精彩评论