Encryption in php and AES decryption in angular using crypto JS

one text

Solution:

Try with below code:

const configuration = {
  keySize: 128 / 8,
  iv: CryptoJS.enc.Utf8.parse('<your initialization vector>'),
  mode: CryptoJS.mode.CBC
};

CryptoJS.AES.decrypt("ciphertext", "<your encryption key>", configuration).toString(CryptoJS.enc.Utf8);

Source