Commit dbd555dedf8d1f2d5025ed684a5a2eac792cecf3

Authored by Christian Herdtweck
1 parent 053d9359

msodde: update doc string and changelog

Showing 1 changed file with 2 additions and 0 deletions
oletools/msodde.py
@@ -11,6 +11,7 @@ Supported formats: @@ -11,6 +11,7 @@ Supported formats:
11 - RTF 11 - RTF
12 - CSV (exported from / imported into Excel) 12 - CSV (exported from / imported into Excel)
13 - XML (exported from Word 2003, Word 2007+, Excel 2003, (Excel 2007+?) 13 - XML (exported from Word 2003, Word 2007+, Excel 2003, (Excel 2007+?)
  14 +- raises an error if run with files encrypted using MS Crypto API RC4
14 15
15 Author: Philippe Lagadec - http://www.decalage.info 16 Author: Philippe Lagadec - http://www.decalage.info
16 License: BSD, see source code or documentation 17 License: BSD, see source code or documentation
@@ -86,6 +87,7 @@ from oletools.common.errors import FileIsEncryptedError @@ -86,6 +87,7 @@ from oletools.common.errors import FileIsEncryptedError
86 # 2018-01-10 CH: - add single-xml files (Word 2003/2007+ / Excel 2003) 87 # 2018-01-10 CH: - add single-xml files (Word 2003/2007+ / Excel 2003)
87 # 2018-03-21 CH: - added detection for various CSV formulas (issue #259) 88 # 2018-03-21 CH: - added detection for various CSV formulas (issue #259)
88 # 2018-09-11 v0.54 PL: - olefile is now a dependency 89 # 2018-09-11 v0.54 PL: - olefile is now a dependency
  90 +# 2018-10-25 CH: - detect encryption and raise error if detected
89 91
90 __version__ = '0.54dev1' 92 __version__ = '0.54dev1'
91 93