SSL certificate problem: self signed certificate in certificate chain git Generally, the issue is a self-signed certificate because the self-signed certificate can not be trusted by any system automatically. So we need to tell the system to trust the self-signed certificate or disable the certificate validation. Due to this error, you can not clone […]
Tag: JKS
Convert JKS to PKCS12
SelfSigned JKS file can be generated for a development environment but the JKS keystore uses a proprietary format. It is recommended to migrate to PKCS12 which is an industry-standard format using “keytool -importkeystore -srckeystore keystore.jks -destkeystore keystore.jks -deststoretype pkcs12“ Generate Self signed JKS narayanatutorial.jks file generated, now we can convert JKS to PKCS12 using the […]
How To Generate a Self Signed Certificate Using Java Keytool
How To Generate a Self Signed Certificate Using Java Keytool A self signed certificate is a certificate that is signed by itself rather than a trusted authority. Since any attacker can create a self signed certificate and launch a man-in-the-middle attack, a user can’t know whether they are sending their encrypted information to the server […]