I am converting a backdated script in JAVA. this script performs AES encrytion and decryption.
This is for AES. have tried various techniques.
This is in my Java file
Cipher.getInstance("AES");
What do i insert here in Javascript as a equivalent?
var algorithm = 'aes-128-cbc';
Expecting the javascript project to perform the exact same task as the java project.