码迷,mamicode.com
首页 > 其他好文 > 详细

自签证书的创建与导入

时间:2017-09-18 22:39:44      阅读:394      评论:0      收藏:0      [点我收藏+]

标签:https   ref   find   cert   nss   keytool   serve   scene   cgi   

1.创建根秘钥        openssl genrsa -out ca.key 2048
2.创建根证书 openssl req -new -x509 -days 36500 -sha256 -key ca.key -out openas.crt -subj "/C=CN/ST=Jiangsu/L=Nanjing/O=HuaweiCA/OU=112.13.167.7"
3.创建SSL证书私匙 openssl genrsa -out server.key 2048位
4.建立SSL证书 openssl req -new -sha256 -key server.key -out server.csr -subj
"/C=CN/ST=Jiangsu/L=Nanjing/O=HuaweiCA/OU=112.13.167.7/CN=112.13.167.7"
5. mkdir demoCA
cd demoCA
mkdir newcerts
touch index.txt
i:
echo ‘01‘ > serial
cd ..
6.用CA根证书签署SSL自建证书 openssl ca -md sha256 -in server.csr -out server.crt -cert openas.crt -keyfile ca.key


7.openssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt

8.keytool -importkeystore -srckeystore subcert.p12 -destkeystore subcert.jks -srcstoretype pkcs12

新建keystore keytool -genkey -alias newkeystore -keyalg RSA -validity 20000 -keystore newkeystore

将证书导入keystore keytool -import -file openas.crt -keystore newkeystore

自签证书的创建与导入

标签:https   ref   find   cert   nss   keytool   serve   scene   cgi   

原文地址:http://www.cnblogs.com/jiangshichao/p/7544901.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!