SSL Client Certificate Authentication with Apache
Creating CA Certificate We use this certificate for only signing certificates that we use for the clients and our web servers. It should be kept very secure. If it is disclosed other certificates signed with this certificate will be disclosed as well.
1 2 |
openssl genrsa -des3 -out ca.key 4096 openssl req -new -x509 -days 365 -key ca.key -out ca.crt |
Creating a Key and CSR for the Client Creating a client certificate […]
Read More →