Sample code for 30+ languages & platforms
Android™

RSA OAEP Padding

See more RSA Examples

Demonstrates how to use OAEP padding with the RSA encryption algorithm. More information about OAEP Padding.

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;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkRsa rsa = new CkRsa();

    // RSA public key in XML format:
    String pubKeyXml = "<RSAPublicKey><Modulus>of3im3mRgd2NLXIGoK6uYLg6jj0Ug2b42rnqa5Tbwz2ieFqMJqt+++x2oqLYGurlz49nt+7/785g3XYWqoka4u9c9zul6YubIjnBM72dQy7rEkEfbUxgjcxqXyjZFx+FpaxFUecLu688XEu+9UA42VKiCgcl+E7TrqnfeeYpNXc=</Modulus><Exponent>AQAB</Exponent></RSAPublicKey>";

    CkPublicKey pubKey = new CkPublicKey();
    success = pubKey.LoadFromString(pubKeyXml);
    if (success == false) {
        Log.i(TAG, pubKey.lastErrorText());
        return;
        }

    success = rsa.UsePublicKey(pubKey);
    if (success == false) {
        Log.i(TAG, rsa.lastErrorText());
        return;
        }

    // To use Optimal Asymmetric Encryption Padding (OAEP) padding,
    // simply set the PkcsPadding property to false
    rsa.put_PkcsPadding(false);

    // Encrypt a string and return the encrypted data base64-encoded:
    rsa.put_EncodingMode("base64");

    String plainText = "RSA Encryption should be easy.";

    boolean usePrivateKey = false;
    String encryptedStr = rsa.encryptStringENC(plainText,usePrivateKey);
    Log.i(TAG, encryptedStr);

  }

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