Category Archives: Uncategorized

Generating X.509 Certificates

Generate a Certificate Authority (CA) Generate a RSA Private Key openssl genrsa -out ca.key 2048 Generate a Certificate Input: ca.key Output: ca.pem openssl req -new -x509 -days 365 -key ca.key -out ca.pem  It prompts to enter the following information: Country Name … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment