SevenZipSharp库:无法加密标头

时间:2013-01-14 15:59:13

标签: c# c#-4.0 sevenzipsharp

我的任务是使用SevenZipSharp库创建受密码保护的ZIP。

我设法使用密码锁定文件内容,但是可以在任何WinZip,7-Zip或Compressed文件夹中查看存档结构 - 文件名,目录层次结构。

我使用cmp.EncryptHeaders = true;然而它似乎没有效果......

如何加密文件和目录名称?感谢。

    static void Main(string[] args)
    {
        const string LibraryPath = @"C:\Program Files\7-Zip\7z.dll";
        SevenZipCompressor.SetLibraryPath(LibraryPath);

        var cmp = new SevenZipCompressor();
        cmp.CompressionMethod = CompressionMethod.Default;
        cmp.CompressionLevel = CompressionLevel.Fast;
        cmp.ArchiveFormat = OutArchiveFormat.Zip;  // compatible with WinZip and Compressed folder
        cmp.ZipEncryptionMethod = ZipEncryptionMethod.ZipCrypto;  // compatible with old WinZip
        cmp.EncryptHeaders = true;

        cmp.FileCompressionStarted += (sender, e) =>
        {
            Console.WriteLine(((FileNameEventArgs)e).FileName);
        };

        const string archive = @"C:\temp\12.3G.zip";
        File.Delete(archive);
        cmp.CompressDirectory(@"C:\temp\Photos", archive, "password");
    }

1 个答案:

答案 0 :(得分:2)

查看源代码,该标志生效的唯一方法是对SevenZip使用OutArchiveFormat

来自源代码:

if (EncryptHeaders && _archiveFormat == OutArchiveFormat.SevenZip && !SwitchIsInCustomParameters("he"))
{
    names.Add(Marshal.StringToBSTR("he"));
    var tmp = new PropVariant {VarType = VarEnum.VT_BSTR, Value = Marshal.StringToBSTR("on")};
    values.Add(tmp);
}