I'm trying to create my own root CA.
Here's one way of generating a self-signed root key/certificate.
openssl req -x509 -nodes -newkey rsa:2048 -subj /CN=$1/countryName=UK/stateOrProvinceName=UK/organizationName=Me -keyout $1.key.pem -out $1.cert.pem
And here's another.
openssl genrsa -des3 -out $1.key.pem 2048
openssl req -new -subj /CN=$1/countryName=UK/stateOrProvinceName=UK/organizationName=Me -key $1.key.pem -out $1.csr
openssl x509 -req -days 36500 -in $1.csr -signkey $1.key.pem -out $1.crt.pem
If I use the first certificate to create a client and server connection (using QSslSocket) then the connection is made OK. Trouble is the date on the certificate is 1975 and I can't use it to sign any others.
I constructed the second method to generate a root certificate with a vaid date, but the ssl socket connection fails with "unknown" error and no other clues. I checked that the right certificate is being used on both the client and server.
What am I doing wrong? Thanks.