Public and private-key pair will be generated during the creation of CSR on our server. We will send the CSR and public key to CA by holding private key with us. CA will validate our public key before signing it with private key of CA's root certificate. We are having our own CA team to certify the CSR requests. My queries are as follows:
- Will CSR itself includes public key or do we need to provide public key separately to CA ?
- Will CSR be signed by our public key before sending it to CA (or) CSR hold public key besides it?
- Will CA sign over only over CSR (or) on the combined set of CSR + public key.?
- Should we install CA's root and intermediate certs in our trust store both on the client and server side? since we are using our own CA instead of Global CA.
- When we are presenting server certificate to client, will that cert includes public key of server.?
- Should we install the server's public key in the truststore of clients for encryption purpose?
Thanks for the help, in advance.