the front-end javascript is encrypted with CryptoJS, and then decrypts the ciphertext. Why is it empty? the following is the code written: import CryptoJS from "crypto-js"; const key = CryptoJS.enc.Utf8.parse("1234123412ABCDEF");...
AES encryption used by the server (C-sharp), CBC,Pkcs7. the key vector on the server side is defined as follows: public byte[] _iv = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF, 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF }; crypto-js used ...