Transport Layer Security using C# 2.0

  • Thread starter Thread starter ntuyen01
  • Start date Start date
N

ntuyen01

Hi All,
I want to develop an web application using TLS (C# 2.0) to test our
server, which just installed the AT/TLS encryption on test system's
CICS Sockets. I here .NET 2.0 support TLS, but I can not find any
examples to do this. Is there some example out there I can take a
look.

Do I have to install x509 test certificate in my machine.
How do I make my application can get the Handshake with the server
using TLS.

Any help is really appreciate it. Thanks in advance.
 
I believe what you want is the SslStream class in the
System.Net.Security namespace. It was introduced in .NET 2.0, so you have
access to it.

Also, there are a number of methods (as well as constructor overloads)
which allow for how you choose to select the x509 certificate to use with
the SSL stream.
 
I believe what you want is the SslStream class in the
System.Net.Security namespace. It was introduced in .NET 2.0, so you have
access to it.

Also, there are a number of methods (as well as constructor overloads)
which allow for how you choose to select the x509 certificate to use with
the SSL stream.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)




Hi All,
I want to develop an web application using TLS (C# 2.0) to test our
server, which just installed the AT/TLS encryption on test system's
CICS Sockets. I here .NET 2.0 support TLS, but I can not find any
examples to do this. Is there some example out there I can take a
look.
Do I have to install x509 test certificate in my machine.
How do I make my application can get the Handshake with the server
using TLS.
Any help is really appreciate it. Thanks in advance.- Hide quoted text -

- Show quoted text -

Thanks for your help. I will look into it, meanwhile do you know are
there example I can take a look.

Again, Thanks for your help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top