How can I decrypt a string using the AES algorithm in C #?

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.

+5
source share
2 answers

Here are two complete codes for you:

# AES- SO .

#, Pass Phrase.

+6

All Articles