Office Open XML (OOXML) 规范:加密

发布于 2024-07-20 05:37:49 字数 416 浏览 7 评论 0原文

我试图了解加密(“受密码保护”)的 Office 2007 文档(特别是 Excel 文档)是如何捆绑的。 我正在尝试使用已知的受密码保护的电子表格。

当我解压 XLSX 文件时,我遇到三个条目:

  • [6]DataSpaces(目录)
  • EncryptionInfo(文件)
  • EncryptedPackage(文件)

EncryptedPackage 文件是如何加密的(哪个密码、哪个密钥派生函数等...)?

我已尝试引用文档,但我还没有取得了很大的成功。

I am trying to understand how encrypted ("password protected") Office 2007 documents are bundled (specifically, Excel documents). I am experimenting with a known, password protected spread sheet.

When I unzip the XLSX file, I encounter three entries:

  • [6]DataSpaces (Directory)
  • EncryptionInfo (File)
  • EncryptedPackage (File)

How is the EncryptedPackage file encrypted (which cipher, which key derivation function, etc...)?

I have tried referencing the documentation, but I haven't had much success.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

十年九夏 2024-07-27 05:37:50

文件加密不是 OpenXML ECMA/ISO 规范的一部分。 除此之外,它是特定于供应商的标准。 如需了解规格,请查看

[MS-OFFCRYPTO]:Office 文档加密结构规范


加密的 OpenXML 文档不会存储为 OPC zip 包,而是存储为复合 OLE 文档内的加密 OPC 包。

File encryption is not part of the OpenXML ECMA/ISO specifications. It's a vendor-specific standard on top of that. For the specification please check out

[MS-OFFCRYPTO]: Office Document Cryptography Structure Specification

Encrypted OpenXML documents are not stored as an OPC zip package but as an encrypted OPC package inside a compound OLE document.

你如我软肋 2024-07-27 05:37:50

我创建了一个 OoXmlCrypto 流 包装器,连接多个开源片段以访问加密的 Office 2007文件轻松。

这个答案可能会有所帮助。

结果 [6]DataSpaces 被忽略,但使用了其他两个部分。 加密的 XLSX 文件并未真正压缩,它是一个 OLE 复合容器。 如果取出各个部分并使用 7zip 对其进行压缩,Excel 不会打开它。

I created a OoXmlCrypto stream wrapper, connecting several open source bits and pieces to access Office 2007 encrypted files easily.

This answer might be helpful.

Turns out [6]DataSpaces is ignored, but other two parts are used. The encrypted XLSX file is not really zipped, it's an OLE compound container. If you take out the parts, and zip them using 7zip, Excel does not open it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文