/docs/MyDocs

To get this branch, use:
bzr branch http://darksoft.org/webbzr/docs/MyDocs

« back to all changes in this revision

Viewing changes to Administration/Linux/daemons/x509ca/req.txt

  • Committer: Suren A. Chilingaryan
  • Date: 2009-04-09 03:21:08 UTC
  • Revision ID: csa@dside.dyndns.org-20090409032108-w4edamdh4adrgdu3
import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Making certification request
 
2
----------------------------
 
3
 1. Creating unsigned certificate & private key
 
4
    openssl req -new -keyout somehost.key -out somehost.pem -days 365
 
5
 
 
6
 2. Joining certificate & private key to make request
 
7
    cat somehost.pem somehost.key > somehost.req
 
8
 
 
9
 3. Send it to Your CA
 
10
 
 
11
 4. Convert to pkcs12 format (only format supported by mozilla & ie for
 
12
    user authentication):
 
13
 
 
14
    openssl pkcs12 -export -in cert.crt -inkey cert.key -name \
 
15
    "Alias" -certfile ca_cert.crtt -out cert.p12
 
16