密码保护Open XML Wordprocessing文档

axe*_*man 3 c# protection ms-word openxml password-protection

我需要在Open XML Wordprocessing文档中添加基本的密码保护。我可以使用COM接口,当我要处理大量文档时,这慢;或者我可以将数据直接放入docx文件中,<w:settings> <w:documentProtection>该速度非常快。但是,查看对密码进行加密的要求似乎需要花费数小时的编程时间。有人编码过该算法吗?我在用C#编码。

Bri*_*rij 5

这是完整的代码段。它为您提供了一个命令行实用程序,用于锁定和解锁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();
        }
    }
}
Run Code Online (Sandbox Code Playgroud)