当我运行这个查询
select cast(cast(packagedata as varbinary(max)) as xml) as PackageData from msdb.dbo.sysssispackages
我得到了 XML 文件的结果,但它被加密了
<EncryptedData xmlns="w3.org/2001/04/xmlenc#"; Type="w3.org/2001/04/xmlenc#Element"; Salt="Gnk/DB61AQ==" IV="iYcfV0NOGy0="> <EncryptionMethod Algorithm="w3.org/2001/04/xmlenc#tripledes-cbc"; /> <CipherData> <CipherValue>/TtgJ46P9L23ZeGt67n+2OZGXoHiGWcUAWE8CdN1Z2aiF40fAg6DfBWGx62RB7Botxrw+f1Jf1CtR10iMLw0iz+VIcbaPFZj5ZfCm3aDeDLbnwXdb7mIdzNtF/5EOjNph/kPz7PxcUlAOUvsLLmjGtx92EhWL6KpXufKahnRiwLuZLNc</CipherValue> </CipherData> </EncryptedData>
有没有使用 T-SQL 进行解密的简单方法?