How to specify CA private key password for client certificate creation using OpenSSL
问题 I am building a command line script to create a client certificate using OpenSSL "mini CA" feature. I have a CA certificate and CA private key encrypted with a password . With those things I am trying to create the client certificate and stumbled upon the command line syntax. How do I specify the password for the CA's private key? So far, I have ... openssl x509 -req -in client.csr -signkey client.key -passin pass:clientPK -CA client-ca.crt -CAkey client-ca.key -CAkeypassin pass:client-caPK <