Android™
Android™
Configure a Socket for Server-Side TLS
See more Socket/SSL/TLS Examples
Demonstrates Socket.InitSslServer, which configures the object for server-side TLS using a server certificate that has access to its private key, then listens for and accepts a TLS connection.
The file path is relative to the application's current working directory. An absolute path may also be used. Supply the path appropriate to your own environment.
Background. A TLS listener presents the configured server certificate during the handshake. When client certificates are required, acceptable CA distinguished names are added before InitSslServer.
Chilkat Android™ Downloads
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;
import android.app.Activity;
import com.chilkatsoft.*;
import android.widget.TextView;
import android.os.Bundle;
public class SimpleActivity extends Activity {
private static final String TAG = "Chilkat";
// Called when the activity is first created.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
boolean success = false;
CkSocket socket = new CkSocket();
// The file path is relative to the application's current working directory. An absolute path
// may also be used. Supply the path appropriate to your own environment.
// The PFX password should come from a secure source rather than being hard-coded.
String pfxPassword = "myPfxPassword";
CkCert cert = new CkCert();
success = cert.LoadPfxFile("qa_data/server.pfx",pfxPassword);
if (success == false) {
Log.i(TAG, cert.lastErrorText());
return;
}
// Configure this object for server-side TLS using the certificate. The certificate must have
// access to its corresponding private key.
success = socket.InitSslServer(cert);
if (success == false) {
Log.i(TAG, socket.lastErrorText());
return;
}
// Listen for connections. Accepted connections will use TLS.
success = socket.BindAndListen(5000,25);
if (success == false) {
Log.i(TAG, socket.lastErrorText());
return;
}
CkSocket connectedSock = new CkSocket();
success = socket.AcceptNext(20000,connectedSock);
if (success == false) {
Log.i(TAG, socket.lastErrorText());
return;
}
Log.i(TAG, "Accepted a TLS client connection.");
}
static {
System.loadLibrary("chilkat");
// Note: If the incorrect library name is passed to System.loadLibrary,
// then you will see the following error message at application startup:
//"The application <your-application-name> has stopped unexpectedly. Please try again."
}
}