如何将.crt和.key转换为.jks证书

项目中因为使用环境和语言不通,需要将证书进行转换,下面我们就展示一下如何将server.crt和server.key转换为.jks证书。

第一步

1, 根据server.crt和server.key生成pkcs12证书
生成过程输入的密码就是keypass
openssl pkcs12 -export -in server.crt -inkey server.key -out mycert.p12 -name abc-CAfile myCA.crt
这是我输入可:a123456 (因此c123456就是我的keypass), name就是别名, 我的别名是abc


ssl-key-jks.png

第二步

2, 将平2根据server证书转换为jks证书
deststorepass就是将来的storepass
keytool -importkeystore -v -srckeystore mycert.p12 -srcstoretype pkcs12 -srcstorepass a123456 -destkeystore Aserver.keystore -deststoretype jks -deststorepass b123456

我上一步中的keypass是a123456,同时设置storepass 为b123456


ssl-key2.png

你可能感兴趣的:(如何将.crt和.key转换为.jks证书)