密码保护Open XML Wordprocessing Document

时间:2009-11-11 05:02:35

标签: c# ms-word openxml protection password-protection

我需要为Open XML Wordprocessing文档添加基本密码保护。我可以使用COM接口,当我要处理大量文档时,非常慢;或者我可以将数据直接放在<w:settings> <w:documentProtection>下的docx文件中,这非常快。但是,查看加密密码的要求看起来需要数小时的编程。有没有人已经编码了这个算法?我在C#编码。

2 个答案:

答案 0 :(得分:4)

这是一个完整的代码段。它为您提供了一个命令行实用程序来锁定和解锁Word文件(解锁文件将 - 我认为 - 也删除了密码保护,虽然我没有尝试这个)。

您需要使用OpenXML Format SDK 2.0来运行它,可在此处获取:http://www.microsoft.com/downloads/details.aspx?FamilyId=C6E744E5-36E9-45F5-8D8C-331DF206E0D0&displaylang=en,以及项目中对DocumentFormat.OpenXml的引用。

using System;
using System.Xml.Linq;

using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Wordprocessing;

namespace LockDoc
{
    /// <summary>
    /// Manipulates modification permissions of an OpenXML document.
    /// </summary>
    class Program
    {
        /// <summary>
        /// Locks/Unlocks an OpenXML document.
        /// </summary>
        /// <param name="args"></param>
        static void Main(string[] args)
        {
            if (args.Length != 2)
            {
                Console.WriteLine("Usage: lockdoc lock|unlock filename.docx");
                return;
            }

            bool isLock = false;
            if (args[0].Equals("lock", StringComparison.OrdinalIgnoreCase))
            {
                isLock = true;
            }
            else if (!args[0].Equals("unlock", StringComparison.OrdinalIgnoreCase))
            {
                Console.Error.WriteLine("Wrong action!");
                return;
            }

            WordprocessingDocument doc = WordprocessingDocument.Open(args[1], true);
            doc.ExtendedFilePropertiesPart.Properties.DocumentSecurity =
                new DocumentFormat.OpenXml.ExtendedProperties.DocumentSecurity
                (isLock ? "8" : "0");
            doc.ExtendedFilePropertiesPart.Properties.Save();

            DocumentProtection dp =
                doc.MainDocumentPart.DocumentSettingsPart
                .Settings.ChildElements.First<DocumentProtection>();
            if (dp != null)
            {
                dp.Remove();
            }

            if (isLock)
            {
                dp = new DocumentProtection();
                dp.Edit = DocumentProtectionValues.Comments;
                dp.Enforcement = DocumentFormat.OpenXml.Wordprocessing.BooleanValues.One;

                doc.MainDocumentPart.DocumentSettingsPart.Settings.AppendChild(dp);
            }

            doc.MainDocumentPart.DocumentSettingsPart.Settings.Save();

            doc.Close();
        }
    }
}

答案 1 :(得分:2)

我有类似@Brij的东西,并希望得到密码哈希的算法。我随后在MSDN论坛上发现了一些不完整的代码,并且还发现Word 2007密码保护非常容易解决。所以现在我只是随机添加哈希和盐,所以包括我在内的任何人都不知道实际的密码。这足以防止意外改变;并且鉴于不可能阻止故意改变,我不会让它变得更加安全。