encrypt
encrypt copied to clipboard
aes decryption not working as expected
Hello I am trying to decrypt an encrypted string in Flutter, that was encrypted in the BE using node. I am using this code `class EncryptData{ //for AES Algorithms static var decrypted;
static decryptAES(plainText){ print("let's decrypt"); final key = Encrypt.Key.fromUtf8('bb5VoDYzc4VXU4MWguptClH0UVdU7BAt'); final iv = Encrypt.IV(Uint8List.fromList("w9Qmp6ZWoV2DKetL".codeUnits)); final encrypter = Encrypt.Encrypter(Encrypt.AES(key,padding: null, mode: Encrypt.AESMode.ctr)); decrypted = encrypter.decrypt(Encrypt.Encrypted.fromUtf8(plainText), iv: iv); print("decrypted is" + decrypted); } }`
The result I am getting is this one : �&^`e��,���s��JP����J�xf}�e��;N#��.� Is there anry other step that I have to do to get the decrypted text ?
also interested in this issue.
Does not seem like there is any support for this? Did you manage to work this out?