Wire James wrote the following on 01/08/2007 08:56 AM:
> Hi all
> 
> I would like to use https and certificate authentication for a
> client's website. How do I go about getting a commercial certificate

(a) the first step is to create a "certificate signing request" (CSR)
    the way to do this varies depending on the ssl implementation you
    use. Assuming its openssl and apache, you most likely have installed
    them ;) and have created an RSA key for apache:

    #openssl genrsa -des3 -out yourwebsitename.key 1024  (with
    encryption)
    #openssl genrsa -out domainname.key 1024 (no encryption)

    Create the CSR with the RSA private key generated:

    #openssl req -new -key yourwebsitename.key -out yourwebsitename.csr

(b) Send the CSR to your preferred commercial CA (Certificate Authority),
    like Verisign, Thawte (if you love Ubuntu and its creator). Most of
    these CAs have an online CSR submission process, so, check out their
    websites for this.

> and what is the cost range?

Once you have done (b) above, the CA gets back to you with details of the
pricing, etc.

-eb
_______________________________________________
LUG mailing list
[email protected]
http://kym.net/mailman/listinfo/lug
%LUG is generously hosted by INFOCOM http://www.infocom.co.ug/

The above comments and data are owned by whoever posted them (including 
attachments if any). The List's Host is not responsible for them in any way.
---------------------------------------

Reply via email to