Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use SSL in ASP.NET application

I want to use SSL in my ASP.NET application. What should i do? I found many tutorials on the internet, but all of them, unfortunately, does not work (until then I had never worked with certificates).

What is the easiest way to use SSL in ASP.NET applications? I am talking about self-signed certificates, of course.

like image 966
FrozenHeart Avatar asked Aug 26 '13 13:08

FrozenHeart


People also ask

What is SSL in asp net?

SSL provides authentication by using Public Key Infrastructure certificates. The server must provide a certificate that authenticates the server to the client.


1 Answers

You can configure SSL with self signed certifcates in IIS with this tutorial

http://weblogs.asp.net/scottgu/archive/2007/04/06/tip-trick-enabling-ssl-on-iis7-using-self-signed-certificates.aspx

like image 99
matthijsb Avatar answered Oct 12 '22 10:10

matthijsb