Tagged Questions

6
votes
3answers
7k views

Using SSL and SslStream for peer to peer authentication?

I need to provide secure communication between various processes that are using TCP/IP sockets for communication. I want both authentication and encryption. Rather than re-invent the wheel I would ...
1
vote
2answers
479 views

C# SSL secure sockets

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. ...
1
vote
2answers
895 views

Using intermediate certificates with SslStream and X509Certificate2 in a server app

I am working on a .Net server application that uses SslStream to provide its SSL sockets. It works with some clients (such as those based on libcurl), but other clients throw errors due to the lack ...
0
votes
0answers
20 views

.NET check if the certificate is signed by a CA

I'm using the SslStream class to authenticate client and server in a mutual authentication. Both certificates are signed by a CA. The client certificate needs to be distributed to n clients so the ...
0
votes
1answer
470 views

Avoiding administrator access for SslStream.AuthenticateAsClient?

I have an application which uses the .NET SslStream class along with client and server certificates. This application works great on Windows XP. However on Windows 7 (probably Vista too), the below ...