Tagged Questions

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

learn more… | top users | synonyms

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 ...
5
votes
1answer
106 views

What level of thread-safety can I expect from System.Net.Security.SslStream?

I have an application which uses SslStream to send and receive data with its own fixed-length framing. The stream is created by wrapping the NetworkStream returned from TcpClient.GetStream() like so: ...
3
votes
2answers
617 views

.NET SslStream is not working

I am trying inialise a tls tunnel with the .net SslStream but after opening the stream I always get the following error: "Unable to read data from the transport connection: An established connection ...
3
votes
2answers
490 views

SSL certificate setup for SslStream

I have a situation where I need to generate SSL certificates for clients using SslStream as a server. I know how to do that (makecert.exe), but I run into a problem when trying to ensure that both ...
2
votes
2answers
44 views

Sending GET Commands over SSLStream in C#?

I am writing an http automation framework and my problem is communicating with an authenticated http secured connection. After doing some research, I discovered the SslStream object in C# which made ...
2
votes
1answer
510 views

NetworkStream.DataAvailable property does not return the right result when using SslStream

I've got an application with a persistent socket (it's open when the application starts and closed along with the application). This socket is used by a server to push some data. Since this ...
2
votes
1answer
551 views

Connecting to .NET Sslstream x.509 socket with Python or Ruby or Perl

I have a weird requirement. I am trying to communicate with a server written in C#. It looks like this basically: SslStream sslStream = new SslStream(client.GetStream(), true, ...
2
votes
2answers
807 views

Raw FTP SSL with C#

I'm trying to understand how SSL works. In my wish to make a small FTP client which supports SSL I've run into some problems: TcpClient FtpConnection = new TcpClient(FtpServer, FtpPort); ...
2
votes
2answers
2k views

Certificate problem with a new machine - credentials supplied to package not recognized

I am installing a windows service on a new machine. The service does various operations over SslStream over TCP, which uses the certificate in problem. The service has been operating fine with the ...
2
votes
4answers
1k views

SslStream.AuthenticateAsClient Exception when using iPhone Apple Push Notification Provider (apns-sharp)

I receive the following exception when using the Apple Push Notification Provider (apns-sharp). The push notifications work on my development machine however it will not work within the Rackspace ...
2
votes
3answers
508 views

.NET SslStream doesn't close TSL connection properly

It doesn't send close_notify alert before closing the connection. How can I send close_notify alert?
1
vote
2answers
37 views

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.com" $port = "443" $socket = ...
1
vote
0answers
42 views

SslStream .NET Class communicate with Java

I have a .NET SSL server that use SslStream class to communicate with clients. Does anyone know if this class can communicate with sockets of other languages like Java or only with .NET ? Thanks. ...
1
vote
0answers
195 views

SslStream - Verify Remote X509Certificate using CA Certificate File

I've generated a CA and multiple certificates (signed by CA) using OpenSSL (Although, I've generated many different ones by using CA.pl, XCA, TinyCA2 etc.) and I have a .NET/C# client and server both ...
1
vote
3answers
48 views

Transport Layer Security in the .NET framework

I've been asked a question by the boss and actually I can't find any sort of coherent / comprehensive answer out there! So I turn to you, the wise and all-knowing collective of StackOverflow :) The ...
1
vote
2answers
433 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
187 views

sslStream.Read problem: all bytes read are 0

TcpClient client = new TcpClient("69.147.112.160", 443); SslStream sslStream = new SslStream(client.GetStream(),false, ValidateServerCertificate,null); try { ...
1
vote
0answers
265 views

C#: sslStream and local proxy

![enter image description here][1]Hi, We have a server which accepts ssl connection. Say if I request for https://gmail.com then the server first checks if i have logged in to it, if yes then it ...
1
vote
1answer
523 views

XMPP TLS connection with SslStream

I am trying to create a simple xmpp client that connects to Gtalk. The first part of the handshake seems to work. Ror the TLS handshake I created a client SslStream, connected to the intended server ...
1
vote
4answers
342 views

Connect to Server via SSL with various Cipher strengths and algorithms in C#

Searched around a bit, found different tools to check weak ciphers. How can I determine what ciphers/alogrithms the Server supports via .net/c#? I can test sslv2, sslv3 and tls via ...
1
vote
1answer
564 views

Client/Server Authentication with SSLStream

I have a client and server application which use SSLStream to communicate over port 80. Both the client and the server are running as Windows Services. Everything works in my test environment (my ...
1
vote
2answers
168 views

SslStream Delays after inactivity

I have written a client app to talk to a third party server app. Its comms is over a custom port with SSL usng the SslStream class. The server allows permanent connections however I've found I have ...
1
vote
2answers
882 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 ...
1
vote
1answer
803 views

Socket.ReceiveAsync and SslStream

It seems that I cannot get the benefit of ReceiveAsync when using SslStream since I will have to do the reading through SslStream, which only supports the Begin* End* async model. Is it possible to ...
1
vote
1answer
1k views

SslStream on TCP Server fails to validate client certificate with RemoteCertificateNotAvailable

This question is all about solving a SslPolicyError.RemoteCertificateNotAvailable error. I have developed a TCP Server with SSLStream and a TCP Client for the other end. I authenticate the server ...
0
votes
0answers
12 views

BeginAuthenticateAsClient doesn't work in new AppDomain

I am trying to create an SslStream object in a new AppDomain. However, running the BeginAuthenticateAsClient method on the stream causes an Exception to be thrown. internal class SslWrapper : ...
0
votes
0answers
13 views

Sslstream .NET RemoteCertificateValidationCallback Object reference not set

I've a client and a server that use the sslstream class to communicate and be muthually authenticated. Both uses RemoteCertificateValidationCallback to validate the certificate as show below. ...
0
votes
2answers
47 views

SSL over TCP Authenticate Windows Service with certificate

I have one server and three clients in which a windows service is running with local system privileges. Clients and server are mutual authenticated using SSL over TCP and certificates (I'm using the ...
0
votes
1answer
33 views

C++/CLI Authenticate software through x509 certificate

My project is to create a client-server communication that uses the Secure Socket Layer (SSL) security protocol to authenticate the server and the client. I used c++/cli language, SslStream class ...
0
votes
1answer
44 views

Why does sslStream.AuthenticateAsServer require no UAC and alternatives

While tweaking a web proxy code, I noticed that if I run the code in an app with UAC (User Access Control) I get an exception Here is the location where the exception is thrown: ...
0
votes
0answers
63 views

.NET: Async SSL Socket

I recently ported all my NetworkStream code to async Sockets (the SocketAsyncEventArgs model). Now that's finally done, I wanted to port all the SSLStream code to async SSL Sockets, only to find out ...
0
votes
0answers
224 views

Problem while calling SslStream.AuthenticateAsServer The credentials supplied to the package were not recognized.

I have found similar posts on forums but couldn't solve this problem in my case. I have a windows service running as LocalSystem account. I am running a server in this service which communicates with ...
0
votes
1answer
154 views

GZipStream 4G limit - total or currently streaming?

Have aa GzipStream feeding an SSLStream. First time today noticed "The gzip stream can't contain more than 4GB data." at System.IO.Compression.FastEncoder.GetCompressedOutput(Byte[] outputBuffer) at ...
0
votes
0answers
233 views

SslStream equivelent of TcpClient.Available?

Based on the advice of @Len-Holgate in this question, I'm asynchronously requesting 0-byte reads, and in the callback, accept bytes the avaialble bytes with synchronous reads, since I know the data is ...
0
votes
0answers
92 views

C#: show ssl stream response on webpage

I am trying to create a ssl stream and send request through it. I get response like HTTP/1.1 302 FOUND and few more lines. I am able to display this response on console by doing console.writeline, ...
0
votes
1answer
288 views

c# SslStream.Read Loop problem

I've been learning C# by creating an app and i've hit a snag i'm really struggling with. Basicly i have the code below which is what im using to read from a network stream I have setup. It works but ...
0
votes
0answers
230 views

While reading large data using sslStream in C#, i recieve 'Received an unexpected EOF or 0 bytes from the transport stream.'

I am successfully connecting to an IMAP server using socket class and sslstream. The problem I am having is when the attachment in email is very large. Then I end up with Unexpected EOF or 0 bytes ...
0
votes
2answers
579 views

Asking SslStream to accept ONLY a certificate signed by a particular public key

I have a working implementation of this but want to make sure it is secure. The goal is to use SSLStream and only accept SSL certificates from the server that are signed by a particular RSA key. ...
0
votes
1answer
251 views

SslStream AuthenticateAsClient using PFX file

I'm trying to connect to a server using an SslStream. I've been given a PFX file from the owner of the server and I've installed it on my client but I'm not sure how to access the certificate from my ...
0
votes
1answer
441 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 ...
0
votes
2answers
298 views

C# SslStream with GZipStream

Is it possible to use GZipStream passing an SslStream in C#? i.e. can you do GZipStream stream = new GZipStream(sslStream, CompressionMode.Compress); stream.Write(...); ... GZipStream stream = new ...
0
votes
1answer
191 views

How to get the Signature of a Self-Signed Certificate using X509Certificate or other .NET Class?

I am trying to verify a root/self-signed certificate by trying to decrypt the signature with a known/trusted Public Key, then checking if the decrypted hash matches the original certificate hash. I ...
0
votes
1answer
698 views

Using SslStream with IOCP

I have written a TCP server using the Socket class's asynchronous/IOCP methods, BeginSend()/BeginRead()/etc. I would like to add SSL capability using SslStream, but from the interface it looks like ...
0
votes
1answer
381 views

Does SslStream use LocalCertificateSelectionCallback when acting as a server?

If I create a SslStream instance like this: secureStream = new SslStream(stream, true, tlsRemoteCallback, tlsLocalCallback); And then I use one of the AuthenticateAsServer or ...
-1
votes
1answer
199 views

.NET UDP & DTLS

Is there a native way to provide DTLS support for UDP sockets in .NET? edit by native I mean those that are in .NET framework out-of-the-box.