Decrypting AES cipher text using CryptoJS
问题 I am trying to follow the instructions seen in the image to complete mutual authentication between a bluetooth smartcard reader and a mobile application. Based on how I've interpreted the instructions, here is my attempt: const randomNumbers = 'd3be845b701b37eff9f24ea6108c0f99'; const masterKey = '41435231323535552d4a312041757468'; const d1 = CryptoJS.AES.decrypt( { ciphertext: CryptoJS.enc.Hex.parse(randomNumbers), }, CryptoJS.enc.Hex.parse(masterKey), { iv: CryptoJS.enc.Hex.parse(