Hi Amit,
If the data was compressed using the XceedCompression object, then the header has the following format:
struct SCompressHeader
{
BYTE fcEncrypted : 1; // Indicates if the compressed data is encrypted
BYTE fcReserved : 3; // Reserved for future use
BYTE ecCompMethod : 4; // Compression method: v4.5 –> 0=deflate, 1=store, 2=BWT
// v5.0 +-> 3=deflate64
// v6.1 +-> 4=BZip2
// v6.5 +-> 5=LZMA
// Followed by optional encryption header
};
There will be a 4 byte footer that contains an Adler32 checksum of the data.
So a value of 5 for the header would mean that the data is uncompressed and encrypted, which makes sense for images. The encryption is Zip’s ZCrypt encryption.
There’s no way we can tell you what the password is though.
With the proper password, you should be able to use the XceedCompression class of the Xceed Zip Compression Library to decompress the data.
Documentation:
http://doc.xceedsoft.com/products/XceedZip/Overview_of_the_Xceed_Compression_control.html
Imported from legacy forums. Posted by Mohamed [Xceed] (had 448 views)