Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.Cells for Reporting Services supports encryption when exporting Excel files. It supports three encryption types:
There is configuring information for encryption in the Aspose.Cells.ReportingServices.xml file. When the value of Encryption is set to “off”, the Aspose.Cells.ReportingServices turns encryption off.
XML
<Encryption value="off">
<Report name="" >
<Password value=""/>
<EncryptionType value="Microsoft Strong Cryptographic Provider"/>
<KeyLength value="128"/>
</Report>
</ Encryption >
When Encryption is set to “on”, Aspose.Cells.ReportingServices turns on encryption.
<Encryption value="on">There are four parameters in the Encryption section: ReportName, Password, EncryptionType and KeyLength.
XML
<Encryption value="on">
<Report name="Test" >
<Password value="12345"/>
<EncryptionType value="Microsoft Strong Cryptographic Provider"/>
<KeyLength value="128"/>
</Report>
<Report name="" >
<Password value="123456"/>
<EncryptionType value="XOR"/>
<KeyLength value="128"/>
</Report>
</Encryption>
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.