图解keytool公钥和私钥的生成与分发
2020-08-26 10:25:38 1 举报
图解keytool公钥和私钥的生成与分发
作者其他创作
大纲/内容
STEP 1
图解keytool公钥和私钥的生成与分发
keystore
公钥仓库查看方式keytool -list -v -keystore /tmp/kstore.keystore -storepass init234
公钥
密钥实体(Key entity)
公钥装到keystorekeytool -import -alias aliascrt -file /tmp/kstore.crt -keystore /tmp/kstore.keystore -storepass init234 -keypass init123
导出公钥keytool -export -alias kstore -keystore /tmp/kstore.keystore -file /tmp/kstore.crt -rfc -storepass init234
证书: 分发给用户
私钥
STEP 2
STEP 3
密钥仓库keystore
密钥仓库查看方式keytool -list -v -keystore /tmp/kstore.keystore -storepass init234
私钥: 保密
证书查看方式keytool -printcert -file /tmp/kstore.crt
生成: 证书+keystorekeytool -genkey -alias kstore -keypass init123 -keyalg RSA -keysize 2048 -validity 30 -keystore /tmp/kstore.keystore -storepass init234
配对公钥
0 条评论
下一页