artemis_framework 0.1.5__tar.gz → 0.2.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.
- {artemis_framework-0.1.5 → artemis_framework-0.2.0}/PKG-INFO +1 -1
- artemis_framework-0.2.0/artemis_framework/__init__.py +5 -0
- artemis_framework-0.2.0/artemis_framework/asphodel/core/__init__.py +63 -0
- {artemis_framework-0.1.5 → artemis_framework-0.2.0}/pyproject.toml +1 -1
- artemis_framework-0.1.5/artemis_framework/__init__.py +0 -5
- artemis_framework-0.1.5/artemis_framework/asphodel/__init__.py +0 -6
- {artemis_framework-0.1.5 → artemis_framework-0.2.0}/LICENSE +0 -0
- {artemis_framework-0.1.5 → artemis_framework-0.2.0}/README.md +0 -0
- {artemis_framework-0.1.5 → artemis_framework-0.2.0}/artemis_framework/__main__.py +0 -0
- {artemis_framework-0.1.5/artemis_framework/asphodel/core → artemis_framework-0.2.0/artemis_framework/asphodel}/__init__.py +0 -0
- {artemis_framework-0.1.5 → artemis_framework-0.2.0}/artemis_framework/asphodel/core/armor_binary.py +0 -0
- {artemis_framework-0.1.5 → artemis_framework-0.2.0}/artemis_framework/asphodel/core/encrypt_decrypt.py +0 -0
- {artemis_framework-0.1.5 → artemis_framework-0.2.0}/artemis_framework/asphodel/core/gpg_context.py +0 -0
- {artemis_framework-0.1.5 → artemis_framework-0.2.0}/artemis_framework/asphodel/core/key_management.py +0 -0
- {artemis_framework-0.1.5 → artemis_framework-0.2.0}/artemis_framework/asphodel/core/sign_verify.py +0 -0
- {artemis_framework-0.1.5 → artemis_framework-0.2.0}/artemis_framework/elysium/__ini +0 -0
- {artemis_framework-0.1.5 → artemis_framework-0.2.0}/artemis_framework/elysium/__init__.py +0 -0
- {artemis_framework-0.1.5 → artemis_framework-0.2.0}/artemis_framework/tartarus/__init__.py +0 -0
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"""
|
|
2
|
+
One of three primary platforms that make up the Artemis Framework.
|
|
3
|
+
Interfaces and enables user-friendly GnuPG workflows via TUI application
|
|
4
|
+
that is compatible with any system, even headless / bare-bones systems.
|
|
5
|
+
|
|
6
|
+
"""
|
|
7
|
+
from artemis_framework.asphodel.core.gpg_context import build_gpg, check_result, inspect_gpg_version
|
|
8
|
+
from artemis_framework.asphodel.core.key_management import (
|
|
9
|
+
generate_key,
|
|
10
|
+
list_keys_verbose,
|
|
11
|
+
find_key,
|
|
12
|
+
export_public_key,
|
|
13
|
+
export_secret_key,
|
|
14
|
+
import_key_data,
|
|
15
|
+
import_key_file,
|
|
16
|
+
delete_key,
|
|
17
|
+
)
|
|
18
|
+
from artemis_framework.asphodel.core.encrypt_decrypt import (
|
|
19
|
+
encrypt_to_recipients,
|
|
20
|
+
encrypt_symmetric,
|
|
21
|
+
decrypt_data,
|
|
22
|
+
encrypt_file,
|
|
23
|
+
decrypt_file,
|
|
24
|
+
print_decrypt_signature_info,
|
|
25
|
+
)
|
|
26
|
+
from artemis_framework.asphodel.core.sign_verify import (
|
|
27
|
+
clearsign,
|
|
28
|
+
sign_detached,
|
|
29
|
+
sign_inline,
|
|
30
|
+
sign_file_detached,
|
|
31
|
+
verify_clearsign,
|
|
32
|
+
verify_detached,
|
|
33
|
+
verify_detached_file,
|
|
34
|
+
verify_inline,
|
|
35
|
+
VerificationResult,
|
|
36
|
+
)
|
|
37
|
+
from artemis_framework.asphodel.core.armor_binary import (
|
|
38
|
+
is_armored,
|
|
39
|
+
detect_armor_type,
|
|
40
|
+
dearmor,
|
|
41
|
+
reenarmor,
|
|
42
|
+
read_gpg_file,
|
|
43
|
+
write_gpg_file,
|
|
44
|
+
split_armored_stream,
|
|
45
|
+
parse_armor_headers,
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
__all__ = [
|
|
50
|
+
"build_gpg", "check_result", "inspect_gpg_version",
|
|
51
|
+
"generate_key", "list_keys_verbose", "find_key",
|
|
52
|
+
"export_public_key", "export_secret_key",
|
|
53
|
+
"import_key_data", "import_key_file", "delete_key",
|
|
54
|
+
"encrypt_to_recipients", "encrypt_symmetric",
|
|
55
|
+
"decrypt_data", "encrypt_file", "decrypt_file",
|
|
56
|
+
"print_decrypt_signature_info",
|
|
57
|
+
"clearsign", "sign_detached", "sign_inline", "sign_file_detached",
|
|
58
|
+
"verify_clearsign", "verify_detached", "verify_detached_file",
|
|
59
|
+
"verify_inline", "VerificationResult",
|
|
60
|
+
"is_armored", "detect_armor_type", "dearmor", "reenarmor",
|
|
61
|
+
"read_gpg_file", "write_gpg_file", "split_armored_stream",
|
|
62
|
+
"parse_armor_headers",
|
|
63
|
+
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{artemis_framework-0.1.5 → artemis_framework-0.2.0}/artemis_framework/asphodel/core/armor_binary.py
RENAMED
|
File without changes
|
|
File without changes
|
{artemis_framework-0.1.5 → artemis_framework-0.2.0}/artemis_framework/asphodel/core/gpg_context.py
RENAMED
|
File without changes
|
|
File without changes
|
{artemis_framework-0.1.5 → artemis_framework-0.2.0}/artemis_framework/asphodel/core/sign_verify.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|