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 ...
- 10-17-2011 #1Just 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 :
What is private key, public key and thing like that?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
Thanks,
- 10-17-2011 #2
genrsa is used to generate a private key
linux user # 503963
- 10-18-2011 #3
If you are unfamiliar with private/pubic keys, maybe you should check Public-key cryptography - Wikipedia, the free encyclopedia for an overview.


Reply With Quote