After hours of searching and trying things out I haven't succeeded in finding any tutorial on how to create a secure tcp socket on an android phone.
I already have jks AND bks keyStore and trustStore.
I have made a java application using the following method:
System.setProperty("javax.net.ssl.keyStore","keyStore.jks"); System.setProperty("javax.net.ssl.keyStorePassword", "password");
...
SSLSocketFactory factory = (SSLSocketFactory) SSLSocketFactory.getDefault(); SSLSocket sslSock = (SSLSocket) factory.createSocket("server",443);
But I have then found out that System.setProperty(...) does not work on android and so I got the following exception; javax.net.ssl.SSLHandshakeException: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.
Then I tried the suggestion from Otra here: How Can I Access an SSL Connection Through Android?
but there I got: KeyManagementException: Do not init() the default SSLContext
on line:
sslContext. init(...)
I have run out of ideas. If anyone could suggest any other solutions I would be very grateful.
