Does Android Support .jks Keystore Type?
I am trying to connect to server using keystore which is provided by server team. While sending service call to server first i created KeyStore Instance by using following api Key
Solution 1:
I think Android support 'only' BouncyCastle KeyStores (known as BKS)... You still can use Portecle
To convert it from JKS to BKS, should work like a charm (at least it worked for me when trying to store my .CRT into a BKS format ! ;)
'only' meaning, easily here :p, else you'll have to manipulate stuffs
Solution 2:
Other option is to use KeyStore Explorer (downloadable executable for Mac and Windows available online) to switch to BKS (Bouncy Castle KeyStore). Should work good for Android. I had similar issues while using JKS.
Post a Comment for "Does Android Support .jks Keystore Type?"