Ssl-Certificate

-nodes 在使用 OpenSSL 創建 CSR 期間的功能

  • September 6, 2015

這是使用 OpenSSL 創建 CSR 和私鑰的典型命令。

openssl req -nodes -newkey rsa:4096 -keyout myserver.key -out server.csr

-nodes命令行中的功能是什麼?我Google但找不到我的答案。也許這裡的任何人都可以解釋這個功能?

提前致謝。

如果指定了此選項,則如果創建了私鑰,則不會對其進行加密。如“無 DES”,而不是“節點”。

引用自:https://serverfault.com/questions/720377