umask 077
openssl genrsa -out www.example.com.key 2048
umask 022
==== 生成证书请求 ====
注意:此处使用sha256,实际上可以使用例如sha512等等。不要使用md5。
openssl req -new -sha256 -nodes -key www.example.com.key -out www.example.com.csr
==== 查看证书请求的内容 ====
openssl req -in www.example.com.csr -noout -text