What are the merits of JKS vs PKCS12 for code signing?
If you’re working in Java then the Java Key Store is a fairly natural place to store private keys.Java applications typically expect to get the keys they need from JKS, and it’s easy to access from your own Java apps. JKS is not accessible (without jumping through a few hoops) from outside Java, though. PKCS#12 … Read more