Find the answer to your Linux question:
Results 1 to 3 of 3
Hi guys, My knowledge about SSL is quite limited except the fact that I know we have a private key and a public key. But I'm not very sure about ...
  1. #1
    Just Joined!
    Join Date
    Oct 2011
    Posts
    11

    Can someone explain a bit about these ssl prompts?

    Hi guys,
    My knowledge about SSL is quite limited except the fact that I know we have a private key and a public key. But I'm not very sure about CA certificate things like that. My question is can you please explain how those things are used in the following :

    touch smtpd.key
    chmod 600 smtpd.key
    openssl genrsa 1024 > smtpd.key
    openssl req -new -key smtpd.key -x509 -days 3650 -out smtpd.crt # has prompts
    openssl req -new -x509 -extensions v3_ca -keyout cakey.pem -out cacert.pem -days 3650 # has prompts
    What is private key, public key and thing like that?

    Thanks,

  2. #2
    Linux Enthusiast scathefire's Avatar
    Join Date
    Jan 2010
    Location
    Western Kentucky
    Posts
    616
    genrsa is used to generate a private key
    linux user # 503963

  3. #3
    Just Joined! jippie's Avatar
    Join Date
    May 2006
    Location
    Eindhoven, the Netherlands
    Posts
    76
    If you are unfamiliar with private/pubic keys, maybe you should check Public-key cryptography - Wikipedia, the free encyclopedia for an overview.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...