I am connecting an SSL client to my SSL server.
When the client fails to verify a certificate due to the root not existing in the client’s key store, I need the option to add that certificate to the local key store in code and continue.
There are examples for always accepting all certificates, but I want the user to verify the cert and add it to local key store without leaving the application.
SSLSocketFactory sslsocketfactory = (SSLSocketFactory) SSLSocketFactory.getDefault();
SSLSocket sslsocket = (SSLSocket) sslsocketfactory.createSocket("localhost", 23467);
try{
sslsocket.startHandshake();
} catch (IOException e) {
//here I want to get the peer's certificate, conditionally add to local key store, then reauthenticate successfully
}
There is a whole lot of stuff about custom SocketFactory, TrustManager, SSLContext, etc and I don’t really understand how they all fit together or which would be the shortest path to my goal.
You could implement this using a X509TrustManager.
Obtain an SSLContext with
Then initialize it with your custom
X509TrustManagerby using SSLContext#init. The SecureRandom and the KeyManager[] may be null. The latter is only useful if you perform client authentication, if in your scenario only the server needs to authenticate you don’t need to set it.From this SSLContext, get your SSLSocketFactory using SSLContext#getSocketFactory and proceed as planned.
As concerns your X509TrustManager implementation, it could look like this:
Edit:
Ryan was right, I forgot to explain how to add the new root to the existing ones. Let’s assume your current KeyStore of trusted roots was derived from
cacerts(the ‘Java default trust store’ that comes with your JDK, located under jre/lib/security). I assume you loaded that key store (it’s in JKS format) with KeyStore#load(InputStream, char[]).The default password to
cacertsis “changeit” if you haven’t, well, changed it.Then you may add addtional trusted roots using KeyStore#setEntry. You can omit the ProtectionParameter (i.e. null), the KeyStore.Entry would be a TrustedCertificateEntry that takes the new root as parameter to its constructor.
If you’d like to persist the altered trust store at some point, you may achieve this with KeyStore#store(OutputStream, char[].