excuse me.
can i ask you something.
my c# source :
tde
s.Key = bArr2; // hex = ba82b18bb98a1b7367b44a3930545633
tdes.Mode = CipherMode.ECB;
tdes.Padding = PaddingMode.PKCS7;
ICryptoTransform crypt = tdes.CreateEncryptor();
byte[] plain = Encoding.UTF8.GetBytes(text);
byte[] cipher = crypt.TransformFinalBlock(plain, 0, plain.Length);
result : B4DB8A7353ACBDA1209CE0F41D5B9B07E3E903D07A1220773CFE7A32EF5DBA04
autoit source
$MESSAGE = "1000619100_00482_db"
$IV = Binary("0x00000000000000000000000000000000")
Local $vEncryptKey = Binary("0xba82b18bb98a1b7367b44a3930545633")
$xEncryptedMessage = _CryptoNG_AES_CBC_EncryptData($MESSAGE, $vEncryptKey, $IV)
result : B4DB8A7353ACBDA1209CE0F41D5B9B070D3038F15BCB93962A53C7FBC2675229
=> how to get results similar to c# .
I use Google translate
sorry for the inconvenience. thanks you so much!