I am creating an application that requires Java based AES encryption and JavaScript based decryption. I use the following code for encryption as the base form.
public class AESencrp { private static final String ALGO = "AES"; private static final byte[] keyValue = new byte[] { 'A', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k','l', 'm', 'n', 'o', 'p'}; public static String encrypt(String Data) throws Exception { Key key = generateKey(); Cipher c = Cipher.getInstance(ALGO); c.init(Cipher.ENCRYPT_MODE, key); byte[] encVal = c.doFinal(Data.getBytes()); String encryptedValue = new BASE64Encoder().encode(encVal); return encryptedValue; } private static Key generateKey() throws Exception { Key key = new SecretKeySpec(keyValue, ALGO); return key; } }
The JavaScript I'm trying to use for decryption,
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/aes.js"> </script> var decrypted = CryptoJS.AES.decrypt(encrypted,"Abcdefghijklmnop").toString(CryptoJS.enc.Utf8);
But JavaScript decryption does not work. I'm new to this, can someone tell me a way to solve without changing the code of the Java code?
I tried Base-64 to decrypt my text as follows:
var words = CryptoJS.enc.Base64.parse(encrKey); var base64 = CryptoJS.enc.Base64.stringify(words); var decrypted = CryptoJS.AES.decrypt(base64, "Abcdefghijklmnop"); alert("dec :" +decrypted);
but still nothing good.
I tried the solution suggested below to solve a possible filling problem, but did not provide any solution.
var key = CryptoJS.enc.Base64.parse("QWJjZGVmZ2hpamtsbW5vcA=="); var decrypt = CryptoJS.AES.decrypt( encrKey, key, { mode: CryptoJS.mode.ECB,padding: CryptoJS.pad.Pkcs7 } ); alert("dec :" +decrypt);