ensec-cli 1.0.0__tar.gz

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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 古雅倫也
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 all
13
+ 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 THE
21
+ SOFTWARE.
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: ensec-cli
3
+ Version: 1.0.0
4
+ Summary: EncryptSecureDEC Open Source CLI
5
+ Requires-Python: >=3.10
6
+ License-File: LICENSE
7
+ Requires-Dist: pycryptodome
8
+ Requires-Dist: cryptography
9
+ Dynamic: license-file
@@ -0,0 +1,78 @@
1
+ # ENSEC-CLI
2
+
3
+ ENSEC-CLI (EncryptSecure Command Line Interface) は、EncryptSecureDEC の暗号化エンジンを利用したコマンドライン向け暗号化ツールです。
4
+
5
+ GUIを必要とせず、サーバー環境やターミナル環境での利用を想定しています。
6
+
7
+ ## 特徴
8
+
9
+ * AES-GCMによるファイル暗号化
10
+ * ファイル復号
11
+ * Windows対応
12
+ * Linux対応
13
+ * Pythonベース
14
+ * EncryptSecureDECとの互換性を重視
15
+ * 暗号化ファイルをWAVファイルとして保存可能
16
+
17
+ ## 開発目的
18
+
19
+ EncryptSecureDECはGUIアプリケーションとして開発されていますが、
20
+
21
+ * GUIを利用できない環境
22
+ * サーバー上での運用
23
+ * 自動化スクリプトとの連携
24
+ * 旧バージョン利用者向け環境
25
+
26
+ などの用途に対応するため、CLI版としてENSEC-CLIを開発しています。
27
+
28
+ ## 動作環境
29
+
30
+ * Python 3.10以上推奨
31
+ * Windows 10 / 11
32
+ * Linux
33
+
34
+ ## インストール
35
+
36
+ リポジトリを取得します。
37
+
38
+ ```bash
39
+ git clone https://github.com/Divings/ENSEC.git
40
+ cd ENSEC
41
+ ```
42
+
43
+ 依存ライブラリをインストールします。
44
+
45
+ ```bash
46
+ pip install -r requirements.txt
47
+ ```
48
+
49
+ ## 使用方法
50
+
51
+ ### ファイルを暗号化
52
+
53
+ ```bash
54
+ python ensec.py encrypt sample.txt
55
+ ```
56
+
57
+ ### ファイルを復号
58
+
59
+ ```bash
60
+ python ensec.py decrypt sample.txt.enc
61
+ ```
62
+
63
+ ※実際のコマンドは実装に合わせて変更してください。
64
+
65
+ ## プロジェクトについて
66
+
67
+ ENSEC-CLIは合同会社Anvelk Innovationsによって開発されています。
68
+
69
+ 暗号化技術の普及と、より安全なデータ保護環境の提供を目的として継続開発を行っています。
70
+
71
+ ## 関連プロジェクト
72
+
73
+ * EncryptSecureDEC
74
+ * ENSEC WebApp
75
+
76
+ ## ライセンス
77
+
78
+ MIT License
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: ensec-cli
3
+ Version: 1.0.0
4
+ Summary: EncryptSecureDEC Open Source CLI
5
+ Requires-Python: >=3.10
6
+ License-File: LICENSE
7
+ Requires-Dist: pycryptodome
8
+ Requires-Dist: cryptography
9
+ Dynamic: license-file
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ ensec_cli.egg-info/PKG-INFO
5
+ ensec_cli.egg-info/SOURCES.txt
6
+ ensec_cli.egg-info/dependency_links.txt
7
+ ensec_cli.egg-info/entry_points.txt
8
+ ensec_cli.egg-info/requires.txt
9
+ ensec_cli.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ ensec = ensec_cli.cli:main
@@ -0,0 +1,2 @@
1
+ pycryptodome
2
+ cryptography
@@ -0,0 +1,17 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "ensec-cli"
7
+ version = "1.0.0"
8
+ description = "EncryptSecureDEC Open Source CLI"
9
+ requires-python = ">=3.10"
10
+
11
+ dependencies = [
12
+ "pycryptodome",
13
+ "cryptography"
14
+ ]
15
+
16
+ [project.scripts]
17
+ ensec = "ensec_cli.cli:main"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+