Forum Moderators: open

Message Too Old, No Replies

SSL implementation

Sexure Socket Layer

         

hazee

8:26 pm on May 28, 2005 (gmt 0)

10+ Year Member



How can i implement SSL in ASP?
Is it possible?

Any Idea?

txbakers

12:12 am on May 29, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



of course it's possible. SSL has nothing to do with ASP.

SSL implies that you have purchased a certificate from GoDaddy or GeoTrust or Verisign and have installed it on your web server.

You'll need a static IP for the domain name (can't be shared) and port 443 opened on the firewall.

hazee

3:41 am on May 29, 2005 (gmt 0)

10+ Year Member



What advantages I'll get by implementing SSL?

Infact I have login facility in website, user has the facilities of messaging, Address Book, Calendar, File Sending to other Intranet/Internet users and Personal My Documents.

txbakers

5:18 am on May 29, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



SSL encrypts the packets sent over the internet, making it more difficult to steal the data in transit. Required for credit card numbers, bank account numbers, passwords, etc.

hazee

6:34 am on May 29, 2005 (gmt 0)

10+ Year Member



Thnx,

Hazee.

mrMister

1:04 pm on May 29, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Beware as SSL is quite resource intensive. You only want to encrypt pages that will be dealing with sensitive data.

If you encrypt all yopur pages then your site will slow down considerably.

aspdaddy

12:01 pm on May 30, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



>What advantages I'll get by implementing SSL?

Other than encryption - for ecommerce sites it gives the user 'some' origin integrity - the data collector are who they say they are and no man-in-the-middle interception is going on. SSL is sometimes called browser based VPN.

Balloon

4:35 pm on Jun 7, 2005 (gmt 0)

10+ Year Member



Whilst we're on the subject, I know you have to have a separate IP address to run SSL on, but can you run multiple web sites on different domains, each with their own SSL certificate on the same IP?

If you know what I mean!

bsmither

4:47 pm on Jun 7, 2005 (gmt 0)

10+ Year Member



From what I've learned about SSL just now moving through the process of getting one for my site, all data is encrypted, including the domain name in the headers.

Therefore, to have more than one domain on a single IP address requires the server be able to examine the headers (Host Header Name on IIS). But the decryption happens after that point.

txbakers

5:46 am on Jun 8, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



but can you run multiple web sites on different domains, each with their own SSL certificate on the same IP?

No, each SSL site needs its own IP

aspdaddy

8:49 am on Jun 8, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Balloon,

One workaround is to put the ssl server in front of another published (non ssl) web server with the multiple sites on.

The ssl server sends a cert to the user, creates the tunnel and then de-encrpts the requests, but forwards them to the 2nd web server using standard ports.

The trust is with the ssl server not the web server (unless you use ssl bridging) but as they are on the same local network it may not be an issue.

If you do have multiple web sites with one ssl gateway you will need high RAM for encryption/de-encryption overheads & possibly hardware accelerated ssl (pci card) which are quite expensive.