I want to secure the socket with a certificate, so that i can use https (instead of http) to browse any webpage using a listener application that I have developed using Casablanca SDK.
Now, I created a certificate using MakeCert
http://blogs.msdn.com/b/jpsanders/archive/2009/09/29/walkthrough-using-httplistener-as-an-ssl-simple-server.aspx
Now how can I implement it with my URL on google chrome to make it work?
Now, I created a certificate using MakeCert
Makecert -r -pe -n CN="http://172.29.15.63:2001/" -b 05/10/2015 -e 12/22/2025 -eku 1.3.6.1.5.5.7.3.1 -ss my -sr localmachine -sky exchange -sp "Microsoft RSA SChannel Cryptographic Provider" -sy 12
I want this IP Address and port in the SSL so that it can be browsed using https, How can I accomplish this? I followed the below mentioned link, to make it safe and truested.http://blogs.msdn.com/b/jpsanders/archive/2009/09/29/walkthrough-using-httplistener-as-an-ssl-simple-server.aspx
Now how can I implement it with my URL on google chrome to make it work?