Create Self-Signed Certificates and Keys with OpenSSL and convert to PEM
Creating the Certificate Authority's Certificate and Keys Generate a private key for the CA:$ openssl genrsa 2048 > ca-key.pem Generate the X509 certificate for the CA:$ openssl req -new -x509 -nodes -days 365000 \ -key ca-key.pem \ -out ca-cert.pem Creating…