How to AES-128 encrypt a string using a password in Delphi and decrypt in C#? - Stack Overflow
I finally found a compatible solution between Delphi and C# for AES-128. It's also works on Wine. Here's my Delphi code: unit TntLXCryptoUtils; interface function AES128_Encrypt(Value, Password: string): string; function AES128_Decrypt(Value, Password: st...