美文网首页
apk签名证书互转

apk签名证书互转

作者: 珍惜Any | 来源:发表于2020-09-01 08:55 被阅读0次

Apk签名证书 和 Https 网络请求验证证书都是一种东西

只是格式不同,他们之间可以互相转换

JKS->CER

keytool -export -alias test -keystore test.jks -storepass 123456 -file test.cer

CER->JKS

keytool -import -v -alias test -file test.cer -keystore test.jks -storepass 123456 -noprompt

P12 ——> JKS

keytool -importkeystore -srckeystore test.p12 -srcstoretype PKCS12 -deststoretype JKS -destkeystore test.jks

JSK ——>P12

keytool -importkeystore -srckeystore test.jks -srcstoretype JKS -deststoretype PKCS12 -destkeystore test1.p12

相关文章

网友评论

      本文标题:apk签名证书互转

      本文链接:https://www.haomeiwen.com/subject/vrousktx.html