ooxml_crypt 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +58 -0
- data/Rakefile +12 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/ext/ooxml_crypt/extconf.rb +18 -0
- data/ext/ooxml_crypt/ooxml_crypt.c +27 -0
- data/ext/ooxml_crypt/ooxml_crypt.h +7 -0
- data/lib/ooxml_crypt/version.rb +5 -0
- data/lib/ooxml_crypt.rb +75 -0
- data/vendor/cybozulib/.github/workflows/main.yml +12 -0
- data/vendor/cybozulib/.gitignore +5 -0
- data/vendor/cybozulib/CMakeLists.txt +6 -0
- data/vendor/cybozulib/COPYRIGHT +27 -0
- data/vendor/cybozulib/Makefile +26 -0
- data/vendor/cybozulib/bin/libeay32.dll +0 -0
- data/vendor/cybozulib/bin/libmecab.dll +0 -0
- data/vendor/cybozulib/bin/ssleay32.dll +0 -0
- data/vendor/cybozulib/common.mk +116 -0
- data/vendor/cybozulib/common.props +25 -0
- data/vendor/cybozulib/cybozulib.sln +286 -0
- data/vendor/cybozulib/debug.props +14 -0
- data/vendor/cybozulib/include/cybozu/array.hpp +197 -0
- data/vendor/cybozulib/include/cybozu/atoi.hpp +238 -0
- data/vendor/cybozulib/include/cybozu/atomic.hpp +146 -0
- data/vendor/cybozulib/include/cybozu/base64.hpp +210 -0
- data/vendor/cybozulib/include/cybozu/benchmark.hpp +212 -0
- data/vendor/cybozulib/include/cybozu/bfd.hpp +105 -0
- data/vendor/cybozulib/include/cybozu/bit_operation.hpp +139 -0
- data/vendor/cybozulib/include/cybozu/bitvector.hpp +358 -0
- data/vendor/cybozulib/include/cybozu/condition_variable.hpp +113 -0
- data/vendor/cybozulib/include/cybozu/condition_variable_cs.hpp +74 -0
- data/vendor/cybozulib/include/cybozu/config.hpp +392 -0
- data/vendor/cybozulib/include/cybozu/critical_section.hpp +60 -0
- data/vendor/cybozulib/include/cybozu/crypto.hpp +321 -0
- data/vendor/cybozulib/include/cybozu/csucvector.hpp +624 -0
- data/vendor/cybozulib/include/cybozu/csv.hpp +294 -0
- data/vendor/cybozulib/include/cybozu/data_type.hpp +27 -0
- data/vendor/cybozulib/include/cybozu/endian.hpp +224 -0
- data/vendor/cybozulib/include/cybozu/env.hpp +63 -0
- data/vendor/cybozulib/include/cybozu/event.hpp +122 -0
- data/vendor/cybozulib/include/cybozu/exception.hpp +253 -0
- data/vendor/cybozulib/include/cybozu/file.hpp +626 -0
- data/vendor/cybozulib/include/cybozu/fmindex.hpp +291 -0
- data/vendor/cybozulib/include/cybozu/format.hpp +93 -0
- data/vendor/cybozulib/include/cybozu/frequency.hpp +264 -0
- data/vendor/cybozulib/include/cybozu/hash.hpp +67 -0
- data/vendor/cybozulib/include/cybozu/inttype.hpp +174 -0
- data/vendor/cybozulib/include/cybozu/itoa.hpp +336 -0
- data/vendor/cybozulib/include/cybozu/json.hpp +120 -0
- data/vendor/cybozulib/include/cybozu/line_stream.hpp +149 -0
- data/vendor/cybozulib/include/cybozu/link_libeay32.hpp +21 -0
- data/vendor/cybozulib/include/cybozu/link_mpir.hpp +18 -0
- data/vendor/cybozulib/include/cybozu/link_ssleay32.hpp +19 -0
- data/vendor/cybozulib/include/cybozu/log.hpp +237 -0
- data/vendor/cybozulib/include/cybozu/minixml.hpp +452 -0
- data/vendor/cybozulib/include/cybozu/mmap.hpp +143 -0
- data/vendor/cybozulib/include/cybozu/mutex.hpp +144 -0
- data/vendor/cybozulib/include/cybozu/nlp/mecab.hpp +96 -0
- data/vendor/cybozulib/include/cybozu/nlp/plsi.hpp +315 -0
- data/vendor/cybozulib/include/cybozu/nlp/random.hpp +74 -0
- data/vendor/cybozulib/include/cybozu/nlp/sparse.hpp +529 -0
- data/vendor/cybozulib/include/cybozu/nlp/svd.hpp +486 -0
- data/vendor/cybozulib/include/cybozu/nlp/tfidf.hpp +226 -0
- data/vendor/cybozulib/include/cybozu/nlp/top_score.hpp +75 -0
- data/vendor/cybozulib/include/cybozu/option.hpp +743 -0
- data/vendor/cybozulib/include/cybozu/parallel.hpp +88 -0
- data/vendor/cybozulib/include/cybozu/pcg.hpp +72 -0
- data/vendor/cybozulib/include/cybozu/process.hpp +324 -0
- data/vendor/cybozulib/include/cybozu/quit_signal_handler.hpp +66 -0
- data/vendor/cybozulib/include/cybozu/random_generator.hpp +144 -0
- data/vendor/cybozulib/include/cybozu/regex.hpp +463 -0
- data/vendor/cybozulib/include/cybozu/select8.hpp +279 -0
- data/vendor/cybozulib/include/cybozu/serializer.hpp +363 -0
- data/vendor/cybozulib/include/cybozu/sha1.hpp +209 -0
- data/vendor/cybozulib/include/cybozu/sha2.hpp +506 -0
- data/vendor/cybozulib/include/cybozu/siphash.hpp +105 -0
- data/vendor/cybozulib/include/cybozu/socket.hpp +785 -0
- data/vendor/cybozulib/include/cybozu/ssl.hpp +203 -0
- data/vendor/cybozulib/include/cybozu/stacktrace.hpp +291 -0
- data/vendor/cybozulib/include/cybozu/stream.hpp +269 -0
- data/vendor/cybozulib/include/cybozu/string.hpp +1746 -0
- data/vendor/cybozulib/include/cybozu/string_operation.hpp +365 -0
- data/vendor/cybozulib/include/cybozu/sucvector.hpp +378 -0
- data/vendor/cybozulib/include/cybozu/test.hpp +373 -0
- data/vendor/cybozulib/include/cybozu/thread.hpp +229 -0
- data/vendor/cybozulib/include/cybozu/time.hpp +281 -0
- data/vendor/cybozulib/include/cybozu/tls.hpp +115 -0
- data/vendor/cybozulib/include/cybozu/unordered_map.hpp +13 -0
- data/vendor/cybozulib/include/cybozu/unordered_set.hpp +13 -0
- data/vendor/cybozulib/include/cybozu/v128.hpp +376 -0
- data/vendor/cybozulib/include/cybozu/wavelet_matrix.hpp +345 -0
- data/vendor/cybozulib/include/cybozu/xorshift.hpp +189 -0
- data/vendor/cybozulib/include/cybozu/zlib.hpp +325 -0
- data/vendor/cybozulib/include/sais.hxx +364 -0
- data/vendor/cybozulib/misc/make_select8tbl.cpp +26 -0
- data/vendor/cybozulib/mk.bat +37 -0
- data/vendor/cybozulib/readme.md +29 -0
- data/vendor/cybozulib/release.props +12 -0
- data/vendor/cybozulib/sample/Makefile +30 -0
- data/vendor/cybozulib/sample/csucvector_smpl.cpp +42 -0
- data/vendor/cybozulib/sample/data/svd/org/test1.S +4 -0
- data/vendor/cybozulib/sample/data/svd/org/test1.U +4 -0
- data/vendor/cybozulib/sample/data/svd/org/test1.V +6 -0
- data/vendor/cybozulib/sample/data/svd/test1 +4 -0
- data/vendor/cybozulib/sample/data/svd/test2 +4 -0
- data/vendor/cybozulib/sample/desymbol.cpp +127 -0
- data/vendor/cybozulib/sample/exception_smpl.cpp +46 -0
- data/vendor/cybozulib/sample/fmindex_smpl.cpp +231 -0
- data/vendor/cybozulib/sample/log_smpl.cpp +19 -0
- data/vendor/cybozulib/sample/mecab_smpl.cpp +37 -0
- data/vendor/cybozulib/sample/option2_smpl.cpp +68 -0
- data/vendor/cybozulib/sample/option_smpl.cpp +42 -0
- data/vendor/cybozulib/sample/plsi_smpl.cpp +207 -0
- data/vendor/cybozulib/sample/proj/exception_smpl.vcproj +184 -0
- data/vendor/cybozulib/sample/proj/mecab_smpl.vcproj +184 -0
- data/vendor/cybozulib/sample/proj/ssl_smpl/ssl_smpl.vcxproj +85 -0
- data/vendor/cybozulib/sample/proj/ssl_smpl.vcproj +347 -0
- data/vendor/cybozulib/sample/proj/stacktrace_smpl/stacktrace_smpl.vcxproj +85 -0
- data/vendor/cybozulib/sample/proj/svd_smpl.vcproj +184 -0
- data/vendor/cybozulib/sample/quit_signal_handler.cpp +30 -0
- data/vendor/cybozulib/sample/serializer_smpl.cpp +196 -0
- data/vendor/cybozulib/sample/socket_smpl.cpp +82 -0
- data/vendor/cybozulib/sample/ssl_smpl.cpp +39 -0
- data/vendor/cybozulib/sample/stacktrace_smpl.cpp +52 -0
- data/vendor/cybozulib/sample/svd_bench_smpl.cpp +143 -0
- data/vendor/cybozulib/sample/svd_smpl.cpp +94 -0
- data/vendor/cybozulib/sample/wm_bench_smpl.cpp +182 -0
- data/vendor/cybozulib/sample/zlib_smpl.cpp +41 -0
- data/vendor/cybozulib/src/Makefile +8 -0
- data/vendor/cybozulib/src/base/Makefile +19 -0
- data/vendor/cybozulib/test/Makefile +12 -0
- data/vendor/cybozulib/test/base/Makefile +37 -0
- data/vendor/cybozulib/test/base/array_test.cpp +173 -0
- data/vendor/cybozulib/test/base/atoi_test.cpp +774 -0
- data/vendor/cybozulib/test/base/atomic_test.cpp +49 -0
- data/vendor/cybozulib/test/base/base64_test.cpp +113 -0
- data/vendor/cybozulib/test/base/bit_operation_test.cpp +134 -0
- data/vendor/cybozulib/test/base/bitvector_test.cpp +204 -0
- data/vendor/cybozulib/test/base/condition_variable_cs_test.cpp +92 -0
- data/vendor/cybozulib/test/base/condition_variable_test.cpp +88 -0
- data/vendor/cybozulib/test/base/config_test.cpp +236 -0
- data/vendor/cybozulib/test/base/crypto_test.cpp +122 -0
- data/vendor/cybozulib/test/base/csucvector_test.cpp +63 -0
- data/vendor/cybozulib/test/base/csv_test.cpp +182 -0
- data/vendor/cybozulib/test/base/data/a.xml +26 -0
- data/vendor/cybozulib/test/base/endian_test.cpp +56 -0
- data/vendor/cybozulib/test/base/env_test.cpp +22 -0
- data/vendor/cybozulib/test/base/event_test.cpp +41 -0
- data/vendor/cybozulib/test/base/file_test.cpp +233 -0
- data/vendor/cybozulib/test/base/fmindex_test.cpp +118 -0
- data/vendor/cybozulib/test/base/format_test.cpp +12 -0
- data/vendor/cybozulib/test/base/frequency_test.cpp +104 -0
- data/vendor/cybozulib/test/base/itoa_test.cpp +522 -0
- data/vendor/cybozulib/test/base/line_stream_test.cpp +208 -0
- data/vendor/cybozulib/test/base/mecab_test.cpp +41 -0
- data/vendor/cybozulib/test/base/minixml_test.cpp +103 -0
- data/vendor/cybozulib/test/base/mmap_test.cpp +15 -0
- data/vendor/cybozulib/test/base/option_test.cpp +487 -0
- data/vendor/cybozulib/test/base/parallel_test.cpp +48 -0
- data/vendor/cybozulib/test/base/proj/array_test/array_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/atoi_test/atoi_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/atomic_test/atomic_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/base64_test/base64_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/condition_variable_cs_test/condition_variable_cs_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/condition_variable_test/condition_variable_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/config_test/config_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/csv_test/csv_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/endian_test/endian_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/env_test/env_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/event_test/event_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/file_test/file_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/itoa_test/itoa_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/mecab_test/mecab_test.vcxproj +88 -0
- data/vendor/cybozulib/test/base/proj/minixml_test/minixml_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/mmap_test/mmap_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/serializer_test/serializer_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/sha1_test/sha1_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/stream_test/stream_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/string_operation_test/string_operation_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/string_test/string_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/thread_test/thread_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/time_test/time_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/tls_test/tls_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/proj/zlib_test/zlib_test.vcxproj +86 -0
- data/vendor/cybozulib/test/base/random_generator_test.cpp +28 -0
- data/vendor/cybozulib/test/base/regex_test.cpp +74 -0
- data/vendor/cybozulib/test/base/serializer_test.cpp +483 -0
- data/vendor/cybozulib/test/base/sha1_test.cpp +61 -0
- data/vendor/cybozulib/test/base/sha2_test.cpp +191 -0
- data/vendor/cybozulib/test/base/siphash_test.cpp +33 -0
- data/vendor/cybozulib/test/base/socket_test.cpp +76 -0
- data/vendor/cybozulib/test/base/stream_test.cpp +101 -0
- data/vendor/cybozulib/test/base/string_operation_test.cpp +340 -0
- data/vendor/cybozulib/test/base/string_test.cpp +1705 -0
- data/vendor/cybozulib/test/base/sucvector_test.cpp +312 -0
- data/vendor/cybozulib/test/base/thread_test.cpp +62 -0
- data/vendor/cybozulib/test/base/time_test.cpp +164 -0
- data/vendor/cybozulib/test/base/tls_test.cpp +50 -0
- data/vendor/cybozulib/test/base/wavelet_matrix_test.cpp +145 -0
- data/vendor/cybozulib/test/base/zlib_test.cpp +371 -0
- data/vendor/cybozulib/test/nlp/Makefile +27 -0
- data/vendor/cybozulib/test/nlp/proj/random_test.vcproj +184 -0
- data/vendor/cybozulib/test/nlp/proj/sparse_test.vcproj +184 -0
- data/vendor/cybozulib/test/nlp/proj/svd_test.vcproj +184 -0
- data/vendor/cybozulib/test/nlp/random_test.cpp +62 -0
- data/vendor/cybozulib/test/nlp/sparse_test.cpp +347 -0
- data/vendor/cybozulib/test/nlp/svd_test.cpp +234 -0
- data/vendor/cybozulib/test/nlp/top_score_test.cpp +40 -0
- data/vendor/cybozulib/tool/create_vcproj.py +186 -0
- data/vendor/cybozulib/tool/vcproj_tmpl.py +185 -0
- data/vendor/msoffice/COPYRIGHT +27 -0
- data/vendor/msoffice/Makefile +29 -0
- data/vendor/msoffice/bin/64/msoc.dll +0 -0
- data/vendor/msoffice/bin/64/msocsample.exe +0 -0
- data/vendor/msoffice/bin/64/msoffice-crypt.exe +0 -0
- data/vendor/msoffice/bin/msoc.dll +0 -0
- data/vendor/msoffice/bin/msocsample.exe +0 -0
- data/vendor/msoffice/bin/msoffice-crypt.exe +0 -0
- data/vendor/msoffice/common.mk +71 -0
- data/vendor/msoffice/common.props +26 -0
- data/vendor/msoffice/debug.props +14 -0
- data/vendor/msoffice/include/attack.hpp +211 -0
- data/vendor/msoffice/include/cfb.hpp +777 -0
- data/vendor/msoffice/include/crypto_util.hpp +450 -0
- data/vendor/msoffice/include/custom_sha1.hpp +342 -0
- data/vendor/msoffice/include/decode.hpp +240 -0
- data/vendor/msoffice/include/encode.hpp +221 -0
- data/vendor/msoffice/include/make_dataspace.hpp +316 -0
- data/vendor/msoffice/include/msoc.h +129 -0
- data/vendor/msoffice/include/resource.hpp +7 -0
- data/vendor/msoffice/include/standard_encryption.hpp +145 -0
- data/vendor/msoffice/include/uint32vec.hpp +179 -0
- data/vendor/msoffice/include/util.hpp +212 -0
- data/vendor/msoffice/lib/.emptydir +0 -0
- data/vendor/msoffice/misc/decrypt-xls.vbs +46 -0
- data/vendor/msoffice/mk.bat +1 -0
- data/vendor/msoffice/mkdll.bat +3 -0
- data/vendor/msoffice/msoc.def +13 -0
- data/vendor/msoffice/msocsample.py +178 -0
- data/vendor/msoffice/msoffice12.sln +31 -0
- data/vendor/msoffice/readme.md +110 -0
- data/vendor/msoffice/release.props +28 -0
- data/vendor/msoffice/src/Makefile +19 -0
- data/vendor/msoffice/src/attack.cpp +124 -0
- data/vendor/msoffice/src/cfb_test.cpp +77 -0
- data/vendor/msoffice/src/minisample.c +54 -0
- data/vendor/msoffice/src/msocdll.cpp +276 -0
- data/vendor/msoffice/src/msocsample.c +136 -0
- data/vendor/msoffice/src/msoffice-crypt.cpp +219 -0
- data/vendor/msoffice/src/proj/attack/attack.vcxproj +88 -0
- data/vendor/msoffice/src/proj/main/msoffice-crypt.vcxproj +88 -0
- data/vendor/msoffice/src/sha1.cpp +234 -0
- data/vendor/msoffice/test/Makefile +20 -0
- data/vendor/msoffice/test/cfb_test.cpp +74 -0
- data/vendor/msoffice/test/hash_test.cpp +59 -0
- data/vendor/msoffice/test/proj/cfb/cfb_test.vcxproj +90 -0
- data/vendor/msoffice/test/proj/hash/hash_test.vcxproj +90 -0
- data/vendor/msoffice/test/sampl.bat +8 -0
- data/vendor/msoffice/test_all.py +46 -0
- data/vendor/update +4 -0
- metadata +351 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 64e15ec061f119a4cd42d96bf9d78379ab414baac2a7cf112c1949dd2c8cf7dd
|
|
4
|
+
data.tar.gz: 8d2d7db90bf52b382930d39fb0cd1070d354b40554a02b77dda4bea37ba3d919
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: a750fccb3208adafc918e7b215875348e6c8afd372a759d8d3eb8eb89fc4c11225b7a4e2f3cdb0ba0dab938a33c9513e1489c48edd1160a66463a8acb6fedaac
|
|
7
|
+
data.tar.gz: 47abbf6cb88ec6eedea69c89fa10cb743d36b14c1e71d4567afa4771364b5aa4273a71f57c96cb96ec39f19087f18efbd2c68e88c1be175fb24fdd14afbc3a32
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 Ashish Kulkarni
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# OoxmlCrypt
|
|
2
|
+
|
|
3
|
+
A Ruby library for encrypting/decrypting password-protected Microsoft Office XML (OOXML) files (e.g. .docx, .xlsx, .pptx). This is a native extension that builds on top of [the msoffice library](https://github.com/herumi/msoffice). This only supports documents encrypted (i.e. password-protected) by Office 2010 or later.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Add this line to your application's Gemfile:
|
|
8
|
+
|
|
9
|
+
```ruby
|
|
10
|
+
gem 'ooxml_crypt'
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
And then execute:
|
|
14
|
+
|
|
15
|
+
$ bundle install
|
|
16
|
+
|
|
17
|
+
Or install it yourself as:
|
|
18
|
+
|
|
19
|
+
$ gem install ooxml_crypt
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
To encrypt, you can either pass in a file or binary data:
|
|
24
|
+
```ruby
|
|
25
|
+
require "ooxml_crypt"
|
|
26
|
+
|
|
27
|
+
# pass in binary data, get binary data
|
|
28
|
+
encrypted_data = OoxmlCrypt.encrypt(bindata, password)
|
|
29
|
+
|
|
30
|
+
# or use file names
|
|
31
|
+
OoxmlCrypt.encrypt_file(filename, password, encrypted_filename)
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
The same approach holds true for decryption:
|
|
35
|
+
```ruby
|
|
36
|
+
require "ooxml_crypt"
|
|
37
|
+
|
|
38
|
+
# pass in binary data, get binary data
|
|
39
|
+
decrypted_data = OoxmlCrypt.decrypt(bindata, password)
|
|
40
|
+
|
|
41
|
+
# or use file names
|
|
42
|
+
OoxmlCrypt.decrypt_file(filename, password, decrypted_filename)
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
An exception `OoxmlCrypt::Error` will be raised in case of errors.
|
|
46
|
+
## Development
|
|
47
|
+
|
|
48
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
49
|
+
|
|
50
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
51
|
+
|
|
52
|
+
## Contributing
|
|
53
|
+
|
|
54
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/teamsimplepay/ooxml_crypt.
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
require "bundler/setup"
|
|
5
|
+
require "ooxml_crypt"
|
|
6
|
+
|
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
9
|
+
|
|
10
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
11
|
+
# require "pry"
|
|
12
|
+
# Pry.start
|
|
13
|
+
|
|
14
|
+
require "irb"
|
|
15
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "mkmf"
|
|
4
|
+
|
|
5
|
+
# force usage of the C++ compiler
|
|
6
|
+
have_library("stdc++")
|
|
7
|
+
|
|
8
|
+
# check for OpenSSL
|
|
9
|
+
abort("Please install OpenSSL development libraries!") unless have_header("openssl/hmac.h") && have_library("crypto")
|
|
10
|
+
|
|
11
|
+
# setup build configuration
|
|
12
|
+
vendor = File.realpath(File.join(__dir__, "..", "..", "vendor"))
|
|
13
|
+
$INCFLAGS << " -I#{vendor}/cybozulib/include -I#{vendor}/msoffice/include"
|
|
14
|
+
$VPATH << "#{vendor}/msoffice/src"
|
|
15
|
+
$srcs = ["ooxml_crypt.c", "msocdll.cpp"]
|
|
16
|
+
|
|
17
|
+
# create makefile
|
|
18
|
+
create_makefile("ooxml_crypt/ooxml_crypt")
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
#include "ooxml_crypt.h"
|
|
2
|
+
|
|
3
|
+
VALUE rb_encrypt_file(VALUE self, VALUE inFile, VALUE password, VALUE outFile)
|
|
4
|
+
{
|
|
5
|
+
char *out = StringValueCStr(outFile);
|
|
6
|
+
char *in = StringValueCStr(inFile);
|
|
7
|
+
char *pass = StringValueCStr(password);
|
|
8
|
+
|
|
9
|
+
return INT2FIX(MSOC_encryptA(out, in, pass, NULL));
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
VALUE rb_decrypt_file(VALUE self, VALUE inFile, VALUE password, VALUE outFile)
|
|
13
|
+
{
|
|
14
|
+
char *out = StringValueCStr(outFile);
|
|
15
|
+
char *in = StringValueCStr(inFile);
|
|
16
|
+
char *pass = StringValueCStr(password);
|
|
17
|
+
|
|
18
|
+
return INT2FIX(MSOC_decryptA(out, in, pass, NULL));
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
void Init_ooxml_crypt(void)
|
|
22
|
+
{
|
|
23
|
+
VALUE mod = rb_define_module("OoxmlCryptNative");
|
|
24
|
+
|
|
25
|
+
rb_define_module_function(mod, "encrypt_file", rb_encrypt_file, 3);
|
|
26
|
+
rb_define_module_function(mod, "decrypt_file", rb_decrypt_file, 3);
|
|
27
|
+
}
|
data/lib/ooxml_crypt.rb
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "ooxml_crypt/version"
|
|
4
|
+
require_relative "ooxml_crypt/ooxml_crypt"
|
|
5
|
+
|
|
6
|
+
require "tempfile"
|
|
7
|
+
|
|
8
|
+
module OoxmlCrypt
|
|
9
|
+
class Error < StandardError; end
|
|
10
|
+
class FileNotFound < Error; end
|
|
11
|
+
class EmptyPassword < Error; end
|
|
12
|
+
|
|
13
|
+
ERRORS = { # should be kept in sync with msoc.h
|
|
14
|
+
1 => "not supported format",
|
|
15
|
+
2 => "already encrypted",
|
|
16
|
+
3 => "already decrypted",
|
|
17
|
+
4 => "bad password",
|
|
18
|
+
5 => "bad parameter",
|
|
19
|
+
6 => "small max size",
|
|
20
|
+
7 => "no memory",
|
|
21
|
+
8 => "internal exception",
|
|
22
|
+
9 => "too large file",
|
|
23
|
+
10 => "inFile is empty",
|
|
24
|
+
11 => "outFile is empty",
|
|
25
|
+
12 => "password is empty",
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
def self.encrypt_file(input, password, output)
|
|
29
|
+
raise EmptyPassword if password.nil? || password.empty?
|
|
30
|
+
raise FileNotFound, input unless File.exist?(input)
|
|
31
|
+
|
|
32
|
+
result = OoxmlCryptNative.encrypt_file(input, password, output)
|
|
33
|
+
raise Error, ERRORS[-result] if result != 0
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def self.decrypt_file(input, password, output)
|
|
37
|
+
raise EmptyPassword if password.nil? || password.empty?
|
|
38
|
+
raise FileNotFound, input unless File.exist?(input)
|
|
39
|
+
|
|
40
|
+
result = OoxmlCryptNative.decrypt_file(input, password, output)
|
|
41
|
+
raise Error, ERRORS[-result] if result != 0
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def self.encrypt(data, password)
|
|
45
|
+
with_temp_files(data) do |input, output|
|
|
46
|
+
encrypt_file(input, password, output)
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
def self.decrypt(data, password)
|
|
51
|
+
with_temp_files(data) do |input, output|
|
|
52
|
+
decrypt_file(input, password, output)
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
private
|
|
57
|
+
|
|
58
|
+
def self.with_temp_files(data)
|
|
59
|
+
input = Tempfile.new("ooxml_crypt_input", binmode: true)
|
|
60
|
+
input.write(data)
|
|
61
|
+
input.close
|
|
62
|
+
|
|
63
|
+
output = Tempfile.new("ooxml_crypt_output", binmode: true)
|
|
64
|
+
output.close
|
|
65
|
+
|
|
66
|
+
yield input.path, output.path
|
|
67
|
+
|
|
68
|
+
result = File.binread(output.path)
|
|
69
|
+
|
|
70
|
+
input.unlink
|
|
71
|
+
output.unlink
|
|
72
|
+
|
|
73
|
+
result
|
|
74
|
+
end
|
|
75
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
|
|
2
|
+
Copyright (c) 2007-2012 Cybozu Labs, Inc.
|
|
3
|
+
All rights reserved.
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
list of conditions and the following disclaimer.
|
|
10
|
+
Redistributions in binary form must reproduce the above copyright notice,
|
|
11
|
+
this list of conditions and the following disclaimer in the documentation
|
|
12
|
+
and/or other materials provided with the distribution.
|
|
13
|
+
Neither the name of the Cybozu Labs, Inc. nor the names of its contributors may
|
|
14
|
+
be used to endorse or promote products derived from this software without
|
|
15
|
+
specific prior written permission.
|
|
16
|
+
|
|
17
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
18
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
19
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
20
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
21
|
+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
22
|
+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
23
|
+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
24
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
25
|
+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
26
|
+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
|
27
|
+
THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
include common.mk
|
|
2
|
+
|
|
3
|
+
all:
|
|
4
|
+
$(MKDIR) lib bin
|
|
5
|
+
$(MAKE) -C src
|
|
6
|
+
$(MAKE) -C test
|
|
7
|
+
$(MAKE) -C sample
|
|
8
|
+
|
|
9
|
+
test:
|
|
10
|
+
$(MAKE) -C test test
|
|
11
|
+
|
|
12
|
+
sample:
|
|
13
|
+
$(MAKE) -C sample
|
|
14
|
+
|
|
15
|
+
clean:
|
|
16
|
+
$(MAKE) -C src clean
|
|
17
|
+
$(MAKE) -C test clean
|
|
18
|
+
$(MAKE) -C sample clean
|
|
19
|
+
|
|
20
|
+
PREFIX?=/usr/local
|
|
21
|
+
install:
|
|
22
|
+
$(MKDIR) $(PREFIX)/include/cybozu
|
|
23
|
+
cp -a include/cybozu/ $(PREFIX)/include/
|
|
24
|
+
|
|
25
|
+
.PHONY: sample clean
|
|
26
|
+
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
GCC_VER=$(shell $(PRE)$(CC) -dumpversion)
|
|
2
|
+
UNAME_S=$(shell uname -s)
|
|
3
|
+
ifeq ($(UNAME_S),Linux)
|
|
4
|
+
OS=Linux
|
|
5
|
+
endif
|
|
6
|
+
ifeq ($(UNAME_S),Darwin)
|
|
7
|
+
CFLAGS+=-std=c++11 # clang
|
|
8
|
+
else
|
|
9
|
+
LDFLAGS += -lrt
|
|
10
|
+
endif
|
|
11
|
+
CP = cp -f
|
|
12
|
+
AR = ar r
|
|
13
|
+
MKDIR=mkdir -p
|
|
14
|
+
RM=rm -fr
|
|
15
|
+
CFLAGS_OPT+=-fomit-frame-pointer -DNDEBUG
|
|
16
|
+
ifeq ($(CXX),clang++)
|
|
17
|
+
CFLAGS_OPT+=-O3
|
|
18
|
+
else
|
|
19
|
+
ifeq ($(shell expr $(GCC_VER) \> 4.6.0),1)
|
|
20
|
+
CFLAGS_OPT+=-Ofast
|
|
21
|
+
else
|
|
22
|
+
CFLAGS_OPT+=-O3
|
|
23
|
+
endif
|
|
24
|
+
endif
|
|
25
|
+
CFLAGS_WARN=-Wall -Wextra -Wformat=2 -Wcast-qual -Wcast-align -Wwrite-strings -Wfloat-equal -Wpointer-arith
|
|
26
|
+
CFLAGS+= -g -D_FILE_OFFSET_BITS=64
|
|
27
|
+
CFLAGS+=$(CFLAGS_WARN)
|
|
28
|
+
BIT?=64
|
|
29
|
+
ifeq ($(BIT),0)
|
|
30
|
+
BIT_OPT=
|
|
31
|
+
else
|
|
32
|
+
BIT_OPT=-m$(BIT)
|
|
33
|
+
endif
|
|
34
|
+
CFLAGS+= $(BIT_OPT)
|
|
35
|
+
LDFLAGS+= $(BIT_OPT)
|
|
36
|
+
ifeq ($(MARCH),)
|
|
37
|
+
ifeq ($(shell expr $(GCC_VER) \> 4.2.1),1)
|
|
38
|
+
CFLAGS+=-march=native
|
|
39
|
+
endif
|
|
40
|
+
else
|
|
41
|
+
CFLAGS+=$(MARCH)
|
|
42
|
+
endif
|
|
43
|
+
|
|
44
|
+
DEBUG=1
|
|
45
|
+
ifeq ($(RELEASE),1)
|
|
46
|
+
DEBUG=0
|
|
47
|
+
endif
|
|
48
|
+
|
|
49
|
+
ifeq ($(DEBUG),0)
|
|
50
|
+
CFLAGS+=$(CFLAGS_OPT)
|
|
51
|
+
OBJDIR=release
|
|
52
|
+
OBJSUF=
|
|
53
|
+
else
|
|
54
|
+
ifeq ($(OS),Linux)
|
|
55
|
+
LDFLAGS+=-rdynamic
|
|
56
|
+
endif
|
|
57
|
+
OBJDIR=debug
|
|
58
|
+
OBJSUF=d
|
|
59
|
+
endif
|
|
60
|
+
|
|
61
|
+
TOPDIR:=$(realpath $(dir $(lastword $(MAKEFILE_LIST))))/
|
|
62
|
+
EXTDIR:=$(TOPDIR)../cybozulib_ext/
|
|
63
|
+
|
|
64
|
+
####################################################
|
|
65
|
+
|
|
66
|
+
CFLAGS+= -I$(TOPDIR)include
|
|
67
|
+
LDFLAGS += -lz -lpthread -lssl -lcrypto
|
|
68
|
+
HAS_BOOST=$(shell echo "\#include <boost/version.hpp>" | ($(CXX) -E - 2>/dev/null) | grep "boost/version.hpp" >/dev/null && echo "1")
|
|
69
|
+
HAS_MECAB=$(shell echo "\#include <mecab.h>" | ($(CXX) -E - 2>/dev/null) | grep "mecab.h" >/dev/null && echo "1")
|
|
70
|
+
HAS_EIGEN=$(shell echo "\#include <eigen3/Eigen/Sparse>" | ($(CXX) -E - 2>/dev/null) | grep "eigen3/Eigen/Sparse" >/dev/null && echo "1")
|
|
71
|
+
ifeq ($(HAS_BOOST),1)
|
|
72
|
+
LDFLAGS += -lboost_regex
|
|
73
|
+
endif
|
|
74
|
+
ifeq ($(HAS_MECAB),1)
|
|
75
|
+
LDFLAGS += -lmecab
|
|
76
|
+
endif
|
|
77
|
+
|
|
78
|
+
####################################################
|
|
79
|
+
|
|
80
|
+
MKDEP = sh -ec '$(PRE)$(CC) -MM $(CFLAGS) $< | sed "s@\($*\)\.o[ :]*@$(OBJDIR)/\1.o $@ : @g" > $@; [ -s $@ ] || rm -f $@; touch $@'
|
|
81
|
+
|
|
82
|
+
CLEAN=$(RM) $(TARGET) $(OBJDIR)
|
|
83
|
+
|
|
84
|
+
ifeq ($(TEST_OUTPUT),1)
|
|
85
|
+
define UNIT_TEST
|
|
86
|
+
sh -ec 'for i in $(TARGET); do echo $$i; $$i; done'
|
|
87
|
+
endef
|
|
88
|
+
else
|
|
89
|
+
define UNIT_TEST
|
|
90
|
+
sh -ec 'for i in $(TARGET); do $$i|grep "ctest:name"; done' > result.txt
|
|
91
|
+
awk 'BEGIN{E=0} match($$0,/name=([^,]*),.*ng=([0-9]*), exception=([0-9]*)/,r){ if (r[2] +r[3] > 0) {system("$(TOPDIR)/bin/" r[1] ".exe"); E++}} END{if(E==0) {print("all unit tests succeed")}else{exit(1)}}' < result.txt
|
|
92
|
+
endef
|
|
93
|
+
endif
|
|
94
|
+
|
|
95
|
+
define SAMPLE_TEST
|
|
96
|
+
sh -ec 'for i in $(TARGET); do $$i; done'
|
|
97
|
+
endef
|
|
98
|
+
|
|
99
|
+
.SUFFIXES: .cpp .d .exe
|
|
100
|
+
|
|
101
|
+
$(OBJDIR)/%.o: %.cpp
|
|
102
|
+
$(PRE)$(CXX) -c $< -o $@ $(CFLAGS)
|
|
103
|
+
|
|
104
|
+
$(OBJDIR)/%.d: %.cpp $(OBJDIR)
|
|
105
|
+
@$(MKDEP)
|
|
106
|
+
|
|
107
|
+
$(TOPDIR)bin/%$(OBJSUF).exe: $(OBJDIR)/%.o $(LIBS)
|
|
108
|
+
$(PRE)$(CXX) $< -o $@ $(LIBS) $(LDFLAGS)
|
|
109
|
+
|
|
110
|
+
OBJS=$(addprefix $(OBJDIR)/,$(SRC:.cpp=.o))
|
|
111
|
+
|
|
112
|
+
DEPEND_FILE=$(addprefix $(OBJDIR)/, $(SRC:.cpp=.d))
|
|
113
|
+
TEST_FILE=$(addprefix $(TOPDIR)bin/, $(SRC:.cpp=$(OBJSUF).exe))
|
|
114
|
+
|
|
115
|
+
.PHONY: test
|
|
116
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
����<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
<ImportGroup Label="PropertySheets" />
|
|
4
|
+
<PropertyGroup Label="UserMacros" />
|
|
5
|
+
<PropertyGroup>
|
|
6
|
+
<OutDir>$(SolutionDir)bin\</OutDir>
|
|
7
|
+
</PropertyGroup>
|
|
8
|
+
<ItemDefinitionGroup>
|
|
9
|
+
<ClCompile>
|
|
10
|
+
<AdditionalIncludeDirectories>$(SolutionDir)include;$(SolutionDir)../cybozulib_ext/openssl/include;$(SolutionDir)../cybozulib_ext/zlib/include;$(SolutionDir)../cybozulib_ext/mecab/include;$(SolutionDir)../cybozulib_ext/eigen/</AdditionalIncludeDirectories>
|
|
11
|
+
</ClCompile>
|
|
12
|
+
</ItemDefinitionGroup>
|
|
13
|
+
<ItemDefinitionGroup>
|
|
14
|
+
<ClCompile>
|
|
15
|
+
<WarningLevel>Level4</WarningLevel>
|
|
16
|
+
<PrecompiledHeaderFile />
|
|
17
|
+
<PrecompiledHeaderOutputFile />
|
|
18
|
+
<PreprocessorDefinitions>_MBCS;%(PreprocessorDefinitions);NOMINMAX</PreprocessorDefinitions>
|
|
19
|
+
</ClCompile>
|
|
20
|
+
<Link>
|
|
21
|
+
<AdditionalLibraryDirectories>$(SolutionDir)../cybozulib_ext/zlib/lib;$(SolutionDir)../cybozulib_ext/openssl/lib</AdditionalLibraryDirectories>
|
|
22
|
+
</Link>
|
|
23
|
+
</ItemDefinitionGroup>
|
|
24
|
+
<ItemGroup />
|
|
25
|
+
</Project>
|