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 ...
5
votes
1answer
132 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
693 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 ...
2
votes
2answers
76 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
545 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
572 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
845 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
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 ...
1
vote
0answers
211 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
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
206 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
283 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
546 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
362 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
2answers
173 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
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 ...
1
vote
1answer
830 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 ...
0
votes
0answers
57 views

SSL TCP SslStream Server throws unhandled exception “System.Security.Cryptography.CryptographicException: cannot find the original signer”

I'm trying to create a C# TCP server to receive TCP data with SslStream on a Windows 2008 server from a client (objective C mobile application) sending TCP data. I'm using Microsoft's sample code ...
0
votes
0answers
19 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
1answer
58 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
1answer
168 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
262 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
1answer
312 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
238 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
638 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
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 ...
0
votes
2answers
311 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
710 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
390 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
215 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.