下载OpenSSL
http://slproweb.com/products/Win32OpenSSL.html- 生成证书
生成crt证书
CMD进入安装bin目录,执行命令:
openssl req -x509 -sha256 -nodes -days 1095 -newkey rsa:2048 -keyout self.key -out self.crt -subj /CN=*.com -config openssl.cnf格式转换为pfx和cer
openssl pkcs12 -export -out self.pfx -inkey self.key -in self.crt
openssl x509 -inform pem -in self.crt -outform der -out self.cera 服务器IIS导入pfx格式证书并添加HTTPS绑定
客户端安装cer格式证书到Trusted Root Certification Authorities
客户端可成功访问
-
生成签名请求文件 .csr可参考https://my.oschina.net/fajar/blog/425478
留下文章让自己有个参考。
相关文章
- 12-03Windows下创建OpenSSL自签证书及将Windows已有证书pfx文件转化成key、crt文件
- 12-03Windows 生成双向认证的自签证书(本地测试使用)
- 12-03Windows下使用OpenSSL生成自签证书
- 12-03linux下使用openssl生成https的crt和key证书
- 12-03Windows 下使用OpenSSL生成RSA公钥和私钥
- 12-03windows下openssl安装,证书生成,nginx配置https以及http重定向https
- 12-03nginx反向代理cas-server之2:生成证书,centOS下使用openssl生成CA证书(根证书、server证书、client证书)
- 12-03windows下使用openssl生成证书
- 12-03linux下使用openssl生成 csr crt CA证书