I am using java.security.PublicKey
in my project
However, when I enable proguard, I get the following error:
java.lang.NullPointerException: Attempt to invoke interface method 'java.lang.String java.security.PublicKey.getAlgorithm()' on a null object reference
After some investigation I found that it falls on
val entry = KeyStore.PrivateKeyEntry(keyPair.private, arrayOf(certificate)) <--- this line
keyStore.setEntry(alias, entry, keyProtection)
How do I make it work?
adding this to the proguard file does not work:
-keep class java.security.** { *; }
-keepclassmembers class java.security.** { *; }
-keep public interface java.security.Key {*;}
-keep public interface java.security.PublicKey {*;}
-keepclassmembers class * implements java.security.PublicKey {
public <methods>;
}
After even more investigations I found that a more specific line in the constructor of KeyStore.PrivateEntry() is causing the issue
And it is
Certificate[] clonedChain = chain.clone();
clonedChain[0].publicKey is left null
How do I make it clone the public key as well?
The issue was deprecated code.
I was using deprecated spongycastle code to generate a self signed certificate. The public key in said certificate turned to be null, when on proguard.
I changed to the following:
And then:
And it worked well.