-1

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.

sg552
  • 409
  • 3
  • 5
  • 11

1 Answers1

3

if this option is specified then if a private key is created it will not be encrypted. As in "No DES", not "nodes".