I have fine, working communicator application, written in C#. Now I've got to implement secure connection to server. I tried change Socket and TcpClient objects into SslStream, but I got few errors.
Firstly I generated .cer certificate using makecert. OpenSSL certificates didn't worked for me, cause they didn't include private key. Next I created certificate object on server and bind it to SslStream.
X509Certificate serverCertificate = X509Certificate.CreateFromCertFile("ca.cer");
TcpClient clientSocket = this.tcpListener.AcceptTcpClient();
SslStream ssls = new SslStream(clientSocket.GetStream(), false);
ssls.AuthenticateAsServer(serverCertificate, false, SslProtocols.Tls, true);
On the client side I'm doing this:
TcpClient client = new TcpClient(settings.IP, settings.Port);
sslStream = new SslStream(client.GetStream(), false,
new RemoteCertificateValidationCallback(ValidateServerCertificate), null);
sslStream.AuthenticateAsClient(settings.IP);
public static bool ValidateServerCertificate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors)
{
if (sslPolicyErrors == SslPolicyErrors.None)
return true;
Console.WriteLine("Certificate error: {0}", sslPolicyErrors);
return false;
}
but AuthenticateAsClient function throws me an exception. I tried several other method parameters, but none of this worked for me.
Could anyone help me, or introduce me step by step how to change simple sockets into secure? I must notice - SSL isn't the requirement - if there is simplier way to make connection secure I can use it also.
Edit: Message in exception is following:
The remote certificate is invalid according to the validation procedure.