This is a typical command to create CSR and private key with OpenSSL.
openssl req -nodes -newkey rsa:4096 -keyout myserver.key -out server.csr
What is the function of -nodes
in the command line? I google but couldn't find my answer. Perhaps anyone here could explain the function?
Thanks in advance.