I have a certificate which is in .p7b I want change into .jks. So How can I convert it into .jks please reply thanks in advance
Asked
Active
Viewed 2.8k times
5
-
what have you researched so far? – Noam Hacker Mar 21 '16 at 13:10
-
thanks for quick reply I am seen some block but i failed to convert – Vakeel Mansoori Mar 21 '16 at 13:11
1 Answers
-2
The alias should match the alias you used when you generated the key pair.
keytool -importcert -alias alias -trustcacerts -file keystore.p7b -keystore newkeystore.jks –storetype JCEKS
Source: Import certs from a p7b to a jks

Andrew Zellman
- 1
- 2