Tagged Questions

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
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
3answers
507 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
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
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
1answer
562 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
881 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
2answers
46 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
43 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
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
1answer
285 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
2answers
571 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
438 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
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 ...