ssl - How to create certificate from keystore.jks and truststore.jks files -
i need authenticate two-way authentication. have 2 javakeystore files keystore.jks , truststore.jks use when authentication java client , want use python client needs .cer file . how can create certificate file jks files ?
use command:
keytool -export -alias keystore_alias -file your_cert.cer -keystore keystore.jks here keystore_alias alias of keystore. prompted keystore password, must know in order generate certificate.
this website great reference various things can done java keystore files:
https://www.sslshopper.com/article-most-common-java-keytool-keystore-commands.html
Comments
Post a Comment