Create self signed Client Certificate CA Setup and Signing
To set up a Certificate Authority (CA) 1 2 openssl genrsa -out CA.key 2048 openssl req -x509 -new -nodes -key CA.key -days 7300 -out CA.pem Create a self-signed certificate through as follows Generate a public key pair for the client/key file. Generate a CSR file ...
Continue reading