how to generates JCEKS keystore in android
问题 I use KeyStore store = KeyStore.getInstance("JCEKS"); But is make KeyStoreException java.security.KeyStoreException: KeyStore JCEKS implementation not found Reason is default security provider is bouncycastle in Android. Therefore I use KeyStore store = KeyStore.getInstance("JCEKS", "SunJCE"); But is make NoSearchProviderException java.security.NoSearchProviderException: SunJCE 回答1: Android does not include the SunJCE security provider and therefore JCEKS is not a supported Keystore type