javax.crypto.IllegalBlockSizeException: last block incomplete in decryption exception

时光怂恿深爱的人放手 提交于 2019-12-03 08:41:05
sravanalakshmi.sunkara

I got the solution.Following is new code that worked for me

// Encryption
public  String encrypt(String message) throws Exception
{
    String message1=Base64.encodeBytes(message.getBytes(),Base64.NO_OPTIONS);
    String salt = SharedVariables.globalContext.getString(R.string.EncryptionKey);
    SecretKeySpec key = new SecretKeySpec(salt.getBytes(), "AES");
    Cipher c = Cipher.getInstance("AES");
    c.init(Cipher.ENCRYPT_MODE, key);
    byte[] encVal = c.doFinal(message1.getBytes());
    String encrypted=Base64.encodeToString(encVal, Base64.NO_OPTIONS);
    return encrypted;
}

//Decryption    
public String decrypt(String message) throws Exception
{
    String salt = SharedVariables.globalContext.getString(R.string.EncryptionKey);
    Cipher c = Cipher.getInstance("AES");
    SecretKeySpec key = new SecretKeySpec(salt.getBytes(), "AES");
    c.init(Cipher.DECRYPT_MODE, key);
    byte[] decordedValue = Base64.decode(message.getBytes(), Base64.NO_OPTIONS);
    byte[] decValue = c.doFinal(decordedValue);
    String decryptedValue = new String(decValue);
    String decoded=new String(Base64.decode(decryptedValue,Base64.NO_OPTIONS));
    return decoded;
}
votiethuy

salt.getBytes() should be salt.getBytes(UNICODE_FORMAT)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!