obcrypt-cli 0.1.0__py3-none-win_amd64.whl

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,91 @@
1
+ Metadata-Version: 2.4
2
+ Name: obcrypt-cli
3
+ Version: 0.1.0
4
+ Classifier: Development Status :: 4 - Beta
5
+ Classifier: Intended Audience :: Developers
6
+ Classifier: License :: OSI Approved :: MIT License
7
+ Classifier: Environment :: Console
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Rust
10
+ Classifier: Topic :: Security :: Cryptography
11
+ License-File: LICENSE
12
+ Summary: Standalone install of the obcrypt CLI binary via pip — bytes-in/bytes-out symmetric encryption (oboron protocol, a-tier + u-tier).
13
+ Keywords: cli,encryption,cryptography,oboron,obcrypt
14
+ Home-Page: https://oboron.org/
15
+ Author: Bojan Đuričković
16
+ License-Expression: MIT
17
+ Requires-Python: >=3.8
18
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
19
+ Project-URL: Changelog, https://gitlab.com/oboron/oboron-tools-rs/-/blob/master/obcrypt-cli/CHANGELOG.md
20
+ Project-URL: Documentation, https://oboron.org/
21
+ Project-URL: Homepage, https://oboron.org/
22
+ Project-URL: Repository, https://gitlab.com/oboron/oboron-tools-rs
23
+ Project-URL: Source (Rust crate), https://crates.io/crates/obcrypt-cli
24
+
25
+ # obcrypt-cli (PyPI distribution)
26
+
27
+ `pip`-installable distribution of the
28
+ [`obcrypt`](https://crates.io/crates/obcrypt) command-line
29
+ binary — bytes-in / bytes-out symmetric encryption (oboron
30
+ protocol, a-tier + u-tier).
31
+
32
+ The wheel is **binary-only**: it ships the prebuilt Rust `obcrypt`
33
+ binary, packaged so `pip install obcrypt-cli` drops it on
34
+ `$PATH`. There is no Python module — `import obcrypt_cli` will
35
+ not work. Use it from the shell, or via `subprocess`.
36
+
37
+ ## Install
38
+
39
+ ```bash
40
+ pip install obcrypt-cli
41
+ ```
42
+
43
+ Or with [uv](https://docs.astral.sh/uv/):
44
+
45
+ ```bash
46
+ uv tool install obcrypt-cli
47
+ ```
48
+
49
+ ## What you get
50
+
51
+ A single binary, `obcrypt`, supporting:
52
+
53
+ ```text
54
+ obcrypt <SUBCOMMAND>
55
+
56
+ Subcommands:
57
+ encrypt (e) Encrypt plaintext bytes under a scheme
58
+ decrypt (d) Decrypt ciphertext bytes (auto-detects scheme by default)
59
+ keygen (k) Generate a fresh random 128-character hex key
60
+ init (i) Initialize configuration with a fresh profile
61
+ config (c) Show or update configuration
62
+ profile (p) Manage key profiles
63
+ key Print the active profile's key
64
+ completions Generate shell completion script
65
+ ```
66
+
67
+ Full CLI documentation lives in the Rust crate's
68
+ [README on crates.io](https://crates.io/crates/obcrypt-cli) and
69
+ its [repository](https://gitlab.com/oboron/oboron-tools-rs/-/tree/master/obcrypt-cli).
70
+
71
+ ## Why ship a Rust binary via pip?
72
+
73
+ The Python ecosystem has the broadest reach for ad-hoc tool
74
+ installation across operating systems. Users who already manage
75
+ their tooling with `pip` or `uv` can pull in `obcrypt` without
76
+ adding another package manager. Functionally identical to
77
+ `cargo install obcrypt-cli` — different distribution channel,
78
+ same binary.
79
+
80
+ ## Conformance
81
+
82
+ The `obcrypt` binary inside the wheel is the same one published
83
+ to crates.io, validated end-to-end against the canonical oboron
84
+ test vectors by
85
+ [`oboron-cli-conformance`](https://crates.io/crates/oboron-cli-conformance)
86
+ v0.2.0.
87
+
88
+ ## License
89
+
90
+ MIT — see [LICENSE](LICENSE).
91
+
@@ -0,0 +1,6 @@
1
+ obcrypt_cli-0.1.0.data/scripts/obcrypt.exe,sha256=bVpb4KMV7V-EbkHg3GLDe6yDTj5yCC-QVSW5wR4pVuo,1204736
2
+ obcrypt_cli-0.1.0.dist-info/METADATA,sha256=rUzDqXCz5rFf0D1L1itE4MJBKjiCsrnk7eApqj_6Bsc,3141
3
+ obcrypt_cli-0.1.0.dist-info/WHEEL,sha256=fxUURV-tpz4EGoGaAcyzIZ0CMCngNhGnetS-bU4AaSg,94
4
+ obcrypt_cli-0.1.0.dist-info/licenses/LICENSE,sha256=a76195udV7lOnI1FPuq-Kn10vH8IuGYp23Yh8tr9NL0,1097
5
+ obcrypt_cli-0.1.0.dist-info/sboms/obcrypt-cli.cyclonedx.json,sha256=QmbzDQur643cjF5WCv5aVL6BJ6Me8W3X7rCgMFI3XNE,84752
6
+ obcrypt_cli-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.13.3)
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-win_amd64
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Bojan Đuričković
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.