Android™
Android™
AES Encryption ECB Mode with PKCS7 Padding
See more Encryption Examples
Duplicates the following C# code:
public static byte[] DecryptBySymmetricKey(string encryptedText, byte[] key)
{
string keyAsBase64 = Convert.ToBase64String(key);
byte[] dataToDecrypt = Convert.FromBase64String(encryptedText);
var keyBytes = key;
AesManaged tdes = new AesManaged();
tdes.KeySize = 256;
tdes.BlockSize = 128;
tdes.Key = keyBytes;
tdes.Mode = CipherMode.ECB;
tdes.Padding = PaddingMode.PKCS7;
ICryptoTransform decrypt__1 = tdes.CreateDecryptor();
byte[] deCipher = decrypt__1.TransformFinalBlock(dataToDecrypt, 0, dataToDecrypt.Length);
tdes.Clear();
string EK_result = Convert.ToBase64String(deCipher);
return EK_result;
}
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);
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkCrypt2 crypt = new CkCrypt2();
// In the C# code above that is to be duplicated here, use the base64 encoded key.
String keyAsBase64 = "...";
String encryptedBytesAsBase64 = "....";
crypt.put_KeyLength(256);
crypt.put_CryptAlgorithm("AES");
crypt.put_CipherMode("ecb");
crypt.put_PaddingScheme(0);
crypt.SetEncodedKey(keyAsBase64,"base64");
crypt.put_EncodingMode("base64");
// Pass the base64 representation of the encrypted data.
// (The EncodingMode indicates you are passing base64.)
String EK_result = crypt.decryptStringENC(encryptedBytesAsBase64);
Log.i(TAG, EK_result);
}
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."
}
}