package com.androidedsoft.aesencryptor;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import android.util.Base64;
import org.apache.commons.codec.Decoder;
import org.apache.commons.codec.Encoder;
public class MainActivity extends ActionBarActivity {
public static SecretKey secretKey;
static Cipher cipher;
Button encryptbutton;
String plainText;
public static void main(String[] args) throws Exception {
KeyGenerator keyGenerator = KeyGenerator.getInstance("AES");
keyGenerator.init(128); //key is 128 bit
SecretKey secretKey = keyGenerator.generateKey();
cipher = Cipher.getInstance("AES"); //sets as AES encryption type
}
public void btnClick() {
encryptbutton = (Button) findViewById(R.id.encryptbutton);
encryptbutton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Error 1
String encryptedText = encrypt(plainText, secretKey);
Continued
EditText Resultbox = (EditText) findViewById(R.id.Resultbox);
Resultbox.setText(String.valueOf(encryptedText));
}
});
}
public static String encrypt(String plainText, SecretKey secretKey)
throws Exception {
byte[] plainTextByte = plainText.getBytes();
cipher.init(Cipher.ENCRYPT_MODE, secretKey);
byte[] encryptedByte = cipher.doFinal(plainTextByte);
Error 2
Encoder encoder = Base64.getEncoder();
String encryptedText = encoder.encodeToString(encryptedByte);
Continued
return encryptedText;
} //defines the encryption function
public static String decrypt(String encryptedText, SecretKey secretKey)
throws Exception {
Error 3
Decoder decoder = Base64.getDecoder();
Continued
byte[] encryptedTextByte = (byte[]) decoder.decode(encryptedText);
cipher.init(Cipher.DECRYPT_MODE, secretKey);
byte[] decryptedByte = cipher.doFinal(encryptedTextByte);
String decryptedText = new String(decryptedByte);
return decryptedText;
} //defines the decryption function
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
At lines 51, 52, and 58 I am getting cannot resolve method errors and don't know how to solve them. At line 39 I'm getting an unhandled exception error. Anyone have any idea how to fix this? I don't know if I am just not importing something but everything I could find was included in the imports I already have.