kaikramer / keystore-explorer

KeyStore Explorer is a free GUI replacement for the Java command-line utilities keytool and jarsigner.
https://keystore-explorer.org/
GNU General Public License v3.0
1.7k stars 275 forks source link

Making existing keystore the default? #242

Closed DesigningKnights closed 3 years ago

DesigningKnights commented 3 years ago

Is there a way to make an existing java keystore the default keystore?

kaikramer commented 3 years ago

Just to make sure we are talking about the same thing: You mean the keystore that is opened like this, right?:

grafik

The location of that keystore is prespecified by keytool (see its documentation):

For example, if keytool -genkeypair is called and the -keystore option is not specified, the default keystore file named .keystore in the user's home directory is created when it does not already exist.

If you put an existing keystore into your home directory and rename it to ".keystore", then KSE will open it as the default keystore instead of creating a new one.

There is also the "File > Recent Files" menu item, that's what I use to open frequently accessed keystores.

DesigningKnights commented 3 years ago

Yep, that's exactly what I meant. Thank you!