You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The two constructors of SSLConnectionHelper (where the keystore is given as
path and inputstream respectively) call
this.keyStore = KeyStore.getInstance(keystoreType, "BC");
and
this.keyStore = KeyStore.getInstance(keystoreType);
which makes a difference depending on what providers are installed.
Original issue reported on code.google.com by hsifdr...@gmail.com on 28 May 2010 at 2:28
The text was updated successfully, but these errors were encountered:
I think you have it inverted. It is the constructor:
[public SSLConnectionHelper(String appleHost, int applePort, InputStream
keyStoreInputStream, String keyStorePass, String keystoreType)]
that specifies the "BC", and that one does not work.
you can remove the "BC"
[this.keyStore = KeyStore.getInstance(keystoreType);]
and the constructor will work just fine.
Original comment by dev.serg...@gmail.com on 16 Aug 2010 at 2:31
Original issue reported on code.google.com by
hsifdr...@gmail.com
on 28 May 2010 at 2:28The text was updated successfully, but these errors were encountered: