Top "Keystore" questions

In Java, a keystore is a repository of security certificates, either authorization certificates or public key certificates

How can I get a list of trusted root certificates in Java?

I would like to be able to get access to all trusted root certificates programmatically in a Java app. I …

java certificate keystore
Do you not need a password to access a truststore (made with the java keytool)?

I just created a truststore with the java keytool (for server authentication of a server that does not have a …

java keystore keytool truststore
Configure Eclipse to use signed keystore

I have finally created a 'final' keystore for my app. As my app is using Google Maps, I take I …

android keystore
How to generate keystore and truststore

How to: Generate keystore Generate truststore To make SSL work between client and server, I need help in only Generation …

keystore truststore
keytool - see the public and private keys

I created Java keystore programmatically of type jks (i.e. default type). It is initially empty so I created a …

java security keystore digital-certificate keytool
Add Self Signed Certificate without promting Yes/No from User

Using some batch file, I want to add the untrusted self signed certificate within Java Keystore. Command is %JAVA_HOME%/…

java ssl import keystore keytool
KeyStore and Key Alias

I'm in the process of exporting an app and I'm very curious about the keystore and keyalias. I'm not really …

android keystore
java - how to store a key in keystore

I've need to store 2 keys into KeyStore Here's the relevant code: KeyStore ks = KeyStore.getInstance("JKS"); String password = "password"; char[] …

java keystore
JAVA: how to obtain keystore file for a certification (crt) file

HI All, I have a .crt file and I need to get the associated keystore file. How to do so? …

java keystore crt keytool
How can I specify location of debug keystore for Android ant debug builds?

Is it possible to specify the location of a self created debug keystore when creating debug .apk's (<project-name>…

android debugging ant keystore