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.
link|improve this question

73% accept rate
feedback

2 Answers

up vote 2 down vote accepted

What's the exception ?

I guess you are getting the exception because your client certificate is rejected as valid from the server (unless you did the necessary things to set up trust).

When you use self signed certificates(the ones created by makecert), you would have to also supply a Client Certificate Validation callback when creating the SslStream object. Use this constructor overload http://msdn.microsoft.com/en-us/library/ms145056.aspx

link|improve this answer
Sorry - "The remote certificate is invalid according to the validation procedure." – Mathew Jun 23 '11 at 9:40
1  
For self signed certificates. always return true from the Certificate Validation handler (ValidateServerCertificate) – KRam Jun 23 '11 at 9:49
feedback

.CER file usually contains a certificate without a private key. Loading it into the server just won't work. You need a private key as well. The easiest is to generate the certificate and a key and save them together to PFX format. Then load the certificate and a key from PFX on the server.

Now with your code only only authenticate the server. Is this what you want to do (i.e. don't you want to authenticate the client on the server as well)?

link|improve this answer
I heard about this problem (private key not included), but I think my .cer is all right. Before this errors, I got exception about private key. Then I generated certificate file with another program, and passed this error. I need d SSL just for secure transmition. Authenticating isn't really necessary. Sory my lame, but it seems that I was sleeping on lectures about security:) – Mathew Jun 25 '11 at 16:22
@Matthew Surely editing the question changed everything. What did you get in sslPolicyErrors ? – Eugene Mayevski 'EldoS Corp Jun 25 '11 at 17:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.