其他分享
首页 > 其他分享> > ssl自签证书简易命令

ssl自签证书简易命令

作者:互联网

openssl genrasa -out test.key 2048   # 创建密钥

 

openssl req -new -key test.key -out test.csr -subj "CN=127.0.0.1"  #  创建csr文件

 

openssl x509 -req -days 365 -sha1 -signkey test.key -in test.csr -out test.crt  # 生成证书

 

openssl rsa -in test.key -pubout -out testpub.key  # 从密钥中提取公钥

 

openssl x509 -noout -text -in test.crt  # 查看证书信息

标签:ssl,req,openssl,简易,key,test,签证,csr,out
来源: https://www.cnblogs.com/wczblogs/p/14171677.html