I have a Java project created in Netbeans in Ubuntu that uses Java keystore. When I run the jar file in Ubuntu there is no problem and it works fine. When I run the same jar file in Windows 2003 server I get the following error
java.io.IOException: Keysize too big
at sun.security.JavaKeyStore.engineLoad
at sun.security.provider.JavaKeyStore$JKS.engineLoad
at java.security.KeyStore.load
After searching the web I found it is because of Out of Memory error. But tried some fixes. Nothing works. Any Idea on how to solve this problem.
It looks like some environment issue. The keystore file was created in linux using keytool. if I use keytool in windows to list the keys like this $keytool -list -keystore file
I get keytool java.io.IOException Keysize too big.
If I create a keystore in windows no error in the application, but the problem is I will have to use the same keystore. it has both public and private key. The same keystore file works perfectly in Linux.