Sample code for 30+ languages & platforms
Android™

Export a Traditional Private Key as Encoded Text

See more Private Key Examples

Demonstrates the Chilkat PrivateKey.GetPkcs1ENC method, which exports the key as the traditional/preferred unencrypted DER and encodes the DER bytes as text. The only argument names the binary encoding, such as base64 or hex.

Note: The file paths are relative to the application's current working directory. Absolute paths may also be used. Supply the paths appropriate to your own environment.

Background: This is the encoded-text form of the traditional DER representation — the same bytes the traditional PEM wraps, but returned as a string in the encoding you choose. Use it when a legacy consumer needs the traditional key structure delivered as text rather than as a PEM file. The DER is unencrypted, so the result is sensitive.

Chilkat Android™ Downloads

Android™
// 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;

    //  Load a private key to export.
    CkPrivateKey privKey = new CkPrivateKey();
    success = privKey.LoadPemFile("qa_data/private.pem");
    if (success == false) {
        Log.i(TAG, privKey.lastErrorText());
        return;
        }

    //  Export as the traditional/preferred unencrypted DER, then encode the DER bytes as text.  The
    //  only argument names the binary encoding, such as "base64" or "hex".
    String encoded = privKey.getPkcs1ENC("base64");
    if (privKey.get_LastMethodSuccess() == false) {
        Log.i(TAG, privKey.lastErrorText());
        return;
        }

    Log.i(TAG, encoded);

  }

  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."
  }
}