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

0
votes
1answer
27 views

About STARTTLS SMTP Command

Is STARTTLS command exclusive for TLS channels or can it be used with SSL channels ? Is there any TlsStream which can be used , as SslStream since .Net4 does not support TLS even if it is available as ...
1
vote
0answers
125 views

SslStream TcpClient - Received an unexpected EOF or 0 bytes from the transport stream

I'm trying to connect to a server via a SslStream / Tcp Client. Everytime I do I get an exception stating: Received an unexpected EOF or 0 bytes from the transport stream at the AuthenticateAsClient ...
1
vote
1answer
90 views

SslStream separate thread

I'm trying to display on the screen any data that comes from the ssl stream (From a website). Since I don't know when the data are going to arrive, I used another thread which keeps reading from the ...
4
votes
1answer
129 views

How to allow a Server to accept both SSL and plain text (insecure) connections?

I am trying to create a server that can accept both secure SSL and insecure plain text connection (for backwards compatibility). My code is almost working except the first transmitted data received ...
0
votes
0answers
77 views

How to know size of packet sent in SslStream Asynchronous Socket

How to know size of packet sent in SslStream Asynchronous Socket, since EndWrite doesn't have output? public void DataSent(IAsyncResult result) { SslStream stream = null; try ...
0
votes
0answers
86 views

Client certificate is not recognized by server

I have a method to retrieve client certificates from a certificate store to be used to authenticate to a server. However, when these certificates are used for authentication using the ...
0
votes
0answers
168 views

SslStream.Authenticateasclient hangs when connecting to a non TLS/SSL server [closed]

I am developing a client/server application in c# that needs secure communication. I have used the SslStream class to achieve this objective and everything works fine for as long as the client ...
0
votes
1answer
270 views

SslStream.AuthenticateAsServer exception - The server mode SSL must use a certificate with the associated private key

I am developing a proxy server application similar to CCProxy. Its working fine for HTTP but not HTTPS. Its throwing exception when AuthenticateAsServer() method is called on SslStream object. I also ...
0
votes
3answers
142 views

Makecert certificates safe?

I made an application, which communicates over the. net SSLStream, and for developing I used makecert.exe to create a self signed ssl certificate. Now Ive read in some microsoft article, that ...
2
votes
1answer
259 views

understanding server/proxy/client certificates with .NET sslstream

I'm creating a TCP proxy with C# using TcpListener for the proxy server and TcpCLient for the communication between client and proxy and between proxy and target server. This works really nice. I ...
1
vote
1answer
159 views

Connect to APNS Service using Mono on Ubuntu

I am trying to establish a connection to Apple's APNS Service. I am running Mono on Ubuntu. The code being used to make the connection works in a Windows environment with no issue. The code is part of ...
1
vote
0answers
165 views

SslStream Unable to read data from the transport connection

I am trying to make use of async await in Secure Stream Layer but i am facing this problem Unable to read data from the transport connection: An existing connection was forcibly closed by the remote ...
0
votes
1answer
41 views

SslStream responds differently when accessed as COM object

I am working with an on a project where the bulk of the code is C++. The shop is migrating to C# in the long run, so where possible we are making new code in C# and exposing to C++ via COM. I have ...
0
votes
1answer
822 views

SSLStream: “A Call to SSPI Failed” Exception

I have a strange problem: I wrote a server and client in c# based on .net2 which are chatting over the .net 2 SslStream. There is 1 Connection for sending commands between Cl and S and theres one ...
1
vote
1answer
106 views

C# Relay on SslStream for Encryption

Can i relay on SslStream to encrypt all my sent&received data so i don't have to hash the data or add any other encryption algorithm ?
0
votes
2answers
131 views

C# Is using Socket.Connected breaks the SslStream?

I want to know whether using Socket.Connected to determine if the socket still connected breaks the SslStream or not.
1
vote
1answer
145 views

c# Using SslStream.WriteAsync at high speeds

i am facing an annoying problem with SslStream.WriteAsync here is the code public void Send(PacketWriter writer) { var buffer = writer.GetWorkspace(); _sslStream.WriteAsync(buffer, 0, ...
0
votes
1answer
175 views

sslstream “The BeginWrite method cannot be called when another write operation is pending”

I am having a bit of trouble getting the sslstream to work with sending multiple message after each other. The way i call my client to send data client.Send(objectOne); client.Send(objectTwo); the ...
2
votes
2answers
647 views

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 write operation is pending MYCODE public async void Send(byte[] ...
0
votes
0answers
44 views

SslStream WriteAsync&BeginWrite Error

First here is my code public void Send(byte[] buffer) { if (buffer == null) return; SslStream.WriteAsync(buffer, 0, buffer.Length); } I tried both WriteAsync and BeginWrite ...
1
vote
2answers
274 views

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 i secured using SslStream and as i know using ssl makes me sure that my client will ...
1
vote
1answer
130 views

Detecting SslStream socket disconnection

I am using SslStream on top of NetworkStream that wraps a Socket, how could i detect Socket disconnection at this situation. In another words i want to detect if the remote client closed the ...
1
vote
1answer
129 views

Asynchronous SslStream Error [closed]

I created an Asynchronous SslStream Listener but it did not receive the message from the client properly The Listener Code Code Removed joran i don't want the code to be here anymore Here is the ...
2
votes
0answers
538 views

Asynchronous SSL Socket

Recently I was creating an asynchronous ssl socket class. I finished it, and it authenticated with the client successfully but it did not receive the message sent by client correctly. Here is my ...
2
votes
4answers
741 views

Sending files over TCP/ .NET SSLStream is slow/not working

Im writing an Server/Client Application which works with SSL(over SSLStream), which has to do many things(not only file receiving/sending). Currently, It works so: Theres only one connection. I always ...
0
votes
0answers
176 views

SslStream returning a single byte on read with more data available

I am trying to add Wss support to Alchemy Websocket library https://github.com/Olivine-Labs/Alchemy-Websockets Using an SslStream (based on the stream from a TcpListener), calls to BeginRead only ...
0
votes
0answers
114 views

Starting a SSL stream on a remote computer in C#

I have an executable on a remote computer. The executable is a TCP listener using a SSL stream. When I manually start this executable, it starts listening and it works fine. But, when I try starting ...
2
votes
2answers
477 views

Weird behaviour of SslStream.Read()

Working on some socket layers using SslStream. reference Using the reference, I implemented a simple client. The awkward part is when you run the application, it seems the server is not replying to ...
0
votes
0answers
119 views

When downloading https pages with SslStream, sometimes empty pages are returned

I'm trying to learn how http/https/tcp work by implementing a web client with TcpStream. To fetch https pages, I'm using SslStream, which is used like this: tc_s = new TcpClient(); ...
11
votes
6answers
2k views

How do I identify my server name for server authentication by client in c#

I have recently been trying to make a SSL encrypted Server/Client in C#. I have followed this tutorial on MSDN, however, it required a certificate to be created for the server and client usage using ...
0
votes
1answer
1k views

SslStream client unable to complete handshake with stunnel server

I have a fully operational system where openssl based clients interact with an openssl server. Each client have its own certificate that is validated by the server. Certificates have been generated ...
0
votes
0answers
349 views

C# send data down TcpClient before passing it to SslStream

I have a TCP server which allows multiple TCP clients to join and I would like to send a single piece of data to each client before I initiate an SSL connection. I currently have a fully working SSL ...
0
votes
0answers
244 views

Maximim SSLStream Packet size

When using an SSLStream, there seems to be a limit applied to the maximum packet size of data being transmitted. This gets applied after authentication, and can be seen in a private member of the ...
3
votes
1answer
370 views

Packet fragmentation when sending data via SSLStream

When using an SSLStream to send a 'large' chunk of data (1 meg) to a (already authenticated) client, the packet fragmentation / dissasembly I'm seeing is FAR greater than when using a normal ...
1
vote
1answer
151 views

Why does reading from an SslStream across AppDomains succeed but return an empty buffer?

When reading normally from an SslStream using the Read(byte[] buffer, int offset, int count) method, I get the expected results. However, if I move the SslStream object into a new AppDomain, the read ...
-4
votes
3answers
2k views

HTTPS Proxy server in C#

I´m working on HTTPS proxy server.It should be a console application. I would like to find a manual or example for it.I found lot of pieces or non working samples. I try example from MSND for ...
2
votes
3answers
383 views

Construct GET Request for SslStream

I apologise if this is a bit dim but I want to send something like this over an sslstream to a server that I have acquired a secure socket connection to... GET /F5Check/qpi/1 HTTP/1.1 Host: *****.com ...
0
votes
1answer
615 views

How to get the latest mail from hotmail account using TcpClient and SslStream

I have created a windows test app in which i am connecting to my hotmail account and checking the unread mails there.Currently through my app ,i m getting the last mail from my hotmail account. How ...
0
votes
0answers
184 views

SslStream error when try to execute “read”

I have some function thats create a TCP/IP (IPv4) socket and listen for incoming connections. private string RunServer(string certificate) { string messageData = ""; ...
1
vote
2answers
136 views

Connectivity issues with SSL Socket Server

Socket Server with SSLStream some times refuses new connections from clients. I used the telent hostname port, and it says Connecting To host... Could not open connection to the host, on port ...
0
votes
1answer
236 views

Does sslstream.dispose disposes its inner stream

I use NetworkStream with sockets in an SslStream socket server as follows: stream = new NetworkStream(socket, true); sslStream = new SslStream(stream, false); My question is, if when I call ...
0
votes
0answers
594 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 ...
1
vote
1answer
145 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
241 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. ...
2
votes
2answers
1k 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 ...
1
vote
2answers
724 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
1answer
430 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
98 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
216 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: ...
1
vote
0answers
136 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 2