Friday, January 20, 2017

java.security.KeyStoreException: Uninitialized keystore

The code below will generate the exception.

KeyStore ks = KeyStore.getInstance("JKS");
KeyManagerFactory kmf = KeyManagerFactory.getInstance(
      KeyManagerFactory.getDefaultAlgorithm());
kmf.init(ks, "<keystore password>".toCharArray());

When you execute a program containing the above code segment, you will get the exception.

java.security.KeyStoreException: Uninitialized keystore
        at java.security.KeyStore.aliases(KeyStore.java:1002)
        at sun.security.ssl.SunX509KeyManagerImpl.<init>(SunX509KeyManagerImpl.java:125)
        at sun.security.ssl.KeyManagerFactoryImpl$SunX509.engineInit(KeyManagerFactoryImpl.java:68)
        at javax.net.ssl.KeyManagerFactory.init(KeyManagerFactory.java:259)

This is because the KeyStore used to initialize the KeyManagerFactory is not initialized itself. The following code will initialize the KeyStore.

KeyStore ks = KeyStore.getInstance("JKS");
InputStream readCert = new FileInputStream("<path>/<keystore name>");
 try {
        ks.load(readCert, "<keystore password>".toCharArray());
 } finally {
        readCert.close();
 }

-----------------------------------------------------------------------------------------------------------------
Watch the blessing and loving online channel: SupremeMasterTV live




If you have ever asked yourself these questions, this is the book for you. What is the meaning of life? Why do people suffer? What is in control of my life? Why is life the way it is? How can I stop suffering and be happy? How can I have a successful life? How can I have a life I like to have? How can I be the person I like to be? How can I be wiser and smarter? How can I have good and harmonious relations with others? Why do people meditate to achieve enlightenment? What is the true meaning of spiritual practice? Why all beings are one? Read the book for free here.



1 comment: