证书密钥KEYSTORE转换PEM

没有在线的网站可以搞.

过程

KEYSTORE -> p12 -> pem

# KEYSTORE -> p12
C:\Program Files\Java\jre1.8.0_131\bin>keytool -importkeystore -srckeystore Test.keystore -srcstoretype JKS -deststoretype PKCS12 -destkeystore Test.p12
# p12 -> pem
C:\Program Files\OpenSSL-Win64\bin>openssl pkcs12 -in "C:\Program Files\Java\jre1.8.0_131\bin\Test.p12" -out Test.pem

参考资料

在bin下面执行openssl

keystore文件转换成p12文件指令

上一篇:证书格式的相互转换:DER、CRT、CER、PEM


下一篇:P12 数据的降维及特征选择