TLSharp.Core.MTProto.Crypto.AES.DecryptAES C# (CSharp) Method

DecryptAES() public static method

public static DecryptAES ( AESKeyData key, byte ciphertext ) : byte[]
key AESKeyData
ciphertext byte
return byte[]
        public static byte[] DecryptAES(AESKeyData key, byte[] ciphertext)
        {
            return DecryptIGE(ciphertext, key.Key, key.Iv);
        }