I have an encrypted string from one of our clients.
This string has been encrypted using the AES method in Java.
The only thing I have is the key: "xxxxxxxxxxxxxxxxxxxxxxxx" (24 characters) and the ciphertext: "56e84e9f6344826bcfa439cda09e5e96" (32 characters). (This is really the only data I have)
I cannot find a way to decrypt this string.
Can anyone provide me a working example.
source
share