Top "Sslstream" questions

.NET class that provides a stream used for client-server communication that uses TLS/SSL security protocols to authenticate the server and optionally the client.

Cipher selection for sslStream in .NET 4.5

I am trying to create a TLS1.1/TLS1.2 server using .Net's sslStream class. It appears that by default the only …

c# .net ssl sslstream
SslStream.WriteAsync "The BeginWrite method cannot be called when another write operation is pending"

How to prevent this issue when writing data to the client Asynchronously The BeginWrite method cannot be called when another …

c# sslstream
client and server cannot communicate, because they do not possess a common algorithm - SSLStream

There are lot of similar questions already answered and none of the answers help my current scenario. In the windows …

.net ssl windows-server-2012-r2 sslstream
How to Create a TCP Client connection with a Client Certificate in Powershell

With Following code i can establish a SSL Connection: $cert = dir cert:\CurrentUser\My | where {$_.Subject -like "*Alice*"} $computerName = "google.…

ssl powershell sslstream system.net.sockets
SslStream: An unknown error occurred while processing the certificate

I'm trying to establish a TCP connection to a remote server using SslStream and TLS 1.2 protocol. The code is as …

c# ssl sslstream tls1.2
How to validate self-signed certification

i will provide you with my question clearly so you can answer me I have a client-server (socket) connection that …

c# certificate client-server sslstream