yum install crypto-utils -y
genkey --days 365 mail.example.com
Posted: October 13th, 2009
Categories:
certificates,
security
Tags:
ssl
Comments:
No Comments.
# mkdir selfcert
# cd selfcert
# openssl genrsa -out ca.key 1024
Generating RSA private key, 1024 bit long modulus
.........................++++++
..................++++++
e is 65537 (0x10001)
# openssl req -new -key ca.key -out ca.csr
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
Posted: October 13th, 2009
Categories:
certificates,
security
Tags:
openssl,
ssl
Comments:
No Comments.