javasecurityrestsslhttps

Adding an SSL Certificate to JRE in order to access HTTPS sites


Context:

So I'm trying to access an HTTPS site from my Java code but I am not able due to an SSL Handshake issues between my localhost and the server. It seems the reason for this issues is that the URL I am trying to access has no valid certificate issued from an authorized CA.

So after some research, I'm going to try to import the offending SSL certificates into my JRE, that way it can be validated.

Question:

What is the mac equivalent of this command using the keytool for importing certificates:

keytool -import -alias mycertificate -keystore ..\lib\security\cacerts -file c:\mycert.cer

Reference:

https://sastrija.com/javax-net-ssl-sslhandshakeexception/

Any help or assistance would be much appreciated, thank you


Solution

  • You should be able to import the server (self-signed?) SSL certificate onto your localhost using the command you specified. To be more complete, you can try

    $JAVA_HOME/bin/keytool -import -alias mycertificate -keystore path_to_keystore -file certificate_file 
    

    where

    If prompted, the default truststore password is changeit.