使用 OpenXML SDK 2 保护文档
我正在使用 OpenXML SDK v2 以编程方式创建 DOCX 文件。 该文档的要求之一是对其进行保护以避免编辑。
这是通过使用 DocumentProtection 对象来完成的,如下所示:
new DocumentProtection
{
Edit = DocumentProtectionValues.ReadOnly,
Enforcement = BooleanValues.One,
CryptographicProviderType = CryptProviderValues.RsaFull,
CryptographicAlgorithmClass = CryptAlgorithmClassValues.Hash,
CryptographicAlgorithmType = CryptAlgorithmValues.TypeAny,
CryptographicAlgorithmSid = 4,
CryptographicSpinCount = 50000,
Hash = hash,
Salt = salt
}
在 Word 2007 中打开文档时,效果非常好,但在带有兼容包的 Word 2003 中打开时,无需输入密码即可删除保护。
在线阅读这似乎是“设计使然”或至少是预期的。
在 Word 2003 中查看时,是否有人有任何巧妙的想法可以保持密码保护完好无损?
I am programmatically creating a DOCX file using OpenXML SDK v2. One of the requirements of the document is it be protected to avoid editing.
This is accomplished using the DocumentProtection object like:
new DocumentProtection
{
Edit = DocumentProtectionValues.ReadOnly,
Enforcement = BooleanValues.One,
CryptographicProviderType = CryptProviderValues.RsaFull,
CryptographicAlgorithmClass = CryptAlgorithmClassValues.Hash,
CryptographicAlgorithmType = CryptAlgorithmValues.TypeAny,
CryptographicAlgorithmSid = 4,
CryptographicSpinCount = 50000,
Hash = hash,
Salt = salt
}
This works beautifully when the document is opened in Word 2007, but when opened in Word 2003 with the compatibility pack the protection can be removed without entering a password.
Reading online this appears 'by design' or at least expected.
Does anyone have any clever ideas on keeping the password protection in-tact when viewed within Word 2003?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论