Change java keystore password

How can I change the password in the JKS key store (and all entries in it) from java code?

+4
source share
2 answers

I think you can rewrite the keystore in the same file, but with a different password this method

+1
source

Perhaps expect 4j is the answer. http://code.google.com/p/expect4j/

It transfers the original expect package to java and interacts well with hints, etc.

0
source

Source: https://habr.com/ru/post/1386057/


All Articles