tigrcorn-security 0.3.16.dev5__tar.gz → 0.3.16.dev12__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.
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/PKG-INFO +70 -16
- tigrcorn_security-0.3.16.dev12/README.md +98 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/pyproject.toml +6 -4
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security.egg-info/PKG-INFO +70 -16
- tigrcorn_security-0.3.16.dev12/src/tigrcorn_security.egg-info/requires.txt +5 -0
- tigrcorn_security-0.3.16.dev5/README.md +0 -46
- tigrcorn_security-0.3.16.dev5/src/tigrcorn_security.egg-info/requires.txt +0 -5
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/LICENSE +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/setup.cfg +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/__init__.py +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/alpn.py +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/certs.py +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/policies.py +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/py.typed +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/tls.py +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/tls13/__init__.py +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/tls13/extensions.py +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/tls13/handshake.py +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/tls13/key_schedule.py +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/tls13/messages.py +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/tls13/transcript.py +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/tls_cipher_policy.py +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/x509/__init__.py +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/x509/path.py +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security.egg-info/SOURCES.txt +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security.egg-info/dependency_links.txt +0 -0
- {tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrcorn-security
|
|
3
|
-
Version: 0.3.16.
|
|
3
|
+
Version: 0.3.16.dev12
|
|
4
4
|
Summary: TLS 1.3, mTLS, X.509, ALPN, OCSP, CRL, and certificate policy surfaces for the Tigrcorn Python web server.
|
|
5
5
|
Author-email: Jacob Stewart <jacob@swarmauri.com>
|
|
6
6
|
License: Apache License
|
|
@@ -175,65 +175,119 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
175
175
|
Classifier: Operating System :: OS Independent
|
|
176
176
|
Classifier: Programming Language :: Python :: 3
|
|
177
177
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
178
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
178
179
|
Classifier: Programming Language :: Python :: 3.11
|
|
179
180
|
Classifier: Programming Language :: Python :: 3.12
|
|
180
181
|
Classifier: Programming Language :: Python :: 3.13
|
|
182
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
181
183
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
182
184
|
Classifier: Topic :: Security
|
|
183
185
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
184
186
|
Classifier: Typing :: Typed
|
|
185
|
-
Requires-Python:
|
|
187
|
+
Requires-Python: <3.15,>=3.10
|
|
186
188
|
Description-Content-Type: text/markdown
|
|
187
189
|
License-File: LICENSE
|
|
188
|
-
Requires-Dist: tigrcorn-core==0.3.16.
|
|
189
|
-
Requires-Dist: tigrcorn-config==0.3.16.
|
|
190
|
+
Requires-Dist: tigrcorn-core==0.3.16.dev12
|
|
191
|
+
Requires-Dist: tigrcorn-config==0.3.16.dev12
|
|
190
192
|
Provides-Extra: x509
|
|
191
193
|
Requires-Dist: cryptography>=46.0.0; extra == "x509"
|
|
192
194
|
Dynamic: license-file
|
|
193
195
|
|
|
194
196
|
<div align="center">
|
|
195
197
|
<h1>tigrcorn-security</h1>
|
|
198
|
+
<img
|
|
199
|
+
src="https://raw.githubusercontent.com/Tigrbl/tigrcorn/master/assets/tigrcorn_logo.png"
|
|
200
|
+
alt="Tigrcorn tiger-unicorn logo"
|
|
201
|
+
width="140"
|
|
202
|
+
/>
|
|
196
203
|
|
|
197
204
|
<p><strong>TLS 1.3, mTLS, X.509, ALPN, OCSP, CRL, and certificate policy surfaces for the Tigrcorn Python web server.</strong></p>
|
|
198
205
|
|
|
199
206
|
<a href="https://pypi.org/project/tigrcorn-security/"><img alt="PyPI version for tigrcorn-security" src="https://img.shields.io/pypi/v/tigrcorn-security?label=PyPI"></a>
|
|
200
207
|
<a href="https://pypi.org/project/tigrcorn-security/"><img alt="tigrcorn-security package on PyPI" src="https://img.shields.io/badge/package-PyPI-blue"></a>
|
|
208
|
+
<a href="https://pepy.tech/project/tigrcorn-security"><img alt="Downloads for tigrcorn-security" src="https://static.pepy.tech/badge/tigrcorn-security"></a>
|
|
209
|
+
<a href="https://github.com/tigrbl/tigrcorn/blob/master/pkgs/tigrcorn-security/README.md"><img alt="Hits for tigrcorn-security README" src="https://hits.sh/github.com/tigrbl/tigrcorn/blob/master/pkgs/tigrcorn-security/README.md.svg?label=hits"></a>
|
|
201
210
|
<a href="LICENSE"><img alt="Apache 2.0 license" src="https://img.shields.io/badge/license-Apache%202.0-525252"></a>
|
|
202
|
-
<a href="pyproject.toml"><img alt="Python 3.11 supported" src="https://img.shields.io/badge/python-3.11-3776ab"></a>
|
|
203
|
-
<a href="pyproject.toml"><img alt="Python 3.12 supported" src="https://img.shields.io/badge/python-3.12-3776ab"></a>
|
|
204
|
-
<a href="pyproject.toml"><img alt="Python 3.13 supported" src="https://img.shields.io/badge/python-3.13-3776ab"></a>
|
|
205
|
-
<a href="src/tigrcorn_security/py.typed"><img alt="typed package" src="https://img.shields.io/badge/typed-py.typed-2f7ed8"></a>
|
|
211
|
+
<a href="pyproject.toml"><img alt="Python 3.10 | 3.11 | 3.12 | 3.13 | 3.14 supported" src="https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-3776ab"></a>
|
|
206
212
|
<a href="https://pypi.org/project/tigrcorn-security/"><img alt="security role package" src="https://img.shields.io/badge/role-security-0a7f5a"></a>
|
|
207
213
|
</div>
|
|
208
214
|
|
|
215
|
+
<p align="center"><a href="https://github.com/Tigrbl/tigrcorn/blob/master/.ssot/registry.json"><img alt="SSOT governed" src="https://img.shields.io/badge/SSOT-governed-2f6f4e.svg"></a> <a href="https://discord.gg/jzvrbEtTtt"><img alt="Discord" src="https://img.shields.io/badge/Discord-Join%20chat-5865F2?logo=discord&logoColor=white"></a></p>
|
|
216
|
+
|
|
209
217
|
## Install
|
|
210
218
|
|
|
211
|
-
|
|
219
|
+
```bash
|
|
220
|
+
uv add tigrcorn-security
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
```bash
|
|
212
224
|
pip install tigrcorn-security
|
|
213
|
-
|
|
225
|
+
```
|
|
214
226
|
|
|
215
227
|
Use the aggregate [tigrcorn](https://pypi.org/project/tigrcorn/) distribution when you want the full ASGI3 Python web server stack. Install <code>tigrcorn-security</code> directly when you want only this package boundary and its declared dependencies.
|
|
216
228
|
|
|
217
229
|
## What It Owns
|
|
218
230
|
|
|
219
|
-
<code>tigrcorn-security</code> owns
|
|
231
|
+
<code>tigrcorn-security</code> owns tls, tls13, x509, alpn, cipher policy, and certificate helpers. Its import package is <code>tigrcorn_security</code>, and its declared package dependencies are: tigrcorn-core, tigrcorn-config.
|
|
232
|
+
|
|
233
|
+
This package page is written for developers searching for Tigrcorn ASGI3 server components, Python web server packages, HTTP/3 and QUIC support, WebSocket and WebTransport-adjacent surfaces, and Apache 2.0 licensed infrastructure.
|
|
234
|
+
|
|
235
|
+
## Why Use This?
|
|
236
|
+
|
|
237
|
+
Use <code>tigrcorn-security</code> when you want the security layer as a direct install target instead of the full server bundle. It lets application, operator, or certification workflows depend on this boundary explicitly while keeping the broader Tigrcorn runtime assembled from smaller repo-owned package surfaces.
|
|
238
|
+
|
|
239
|
+
## FAQ
|
|
240
|
+
|
|
241
|
+
### What does this package export?
|
|
242
|
+
|
|
243
|
+
The package exports through the <code>tigrcorn_security</code> namespace and keeps the root <code>tigrcorn</code> package as the compatibility umbrella.
|
|
244
|
+
|
|
245
|
+
### Which boundary does this package own?
|
|
246
|
+
|
|
247
|
+
It is the package boundary for tls, tls13, x509, alpn, cipher policy, and certificate helpers in the Tigrcorn package graph.
|
|
220
248
|
|
|
221
|
-
|
|
249
|
+
### Which security surfaces live here?
|
|
250
|
+
|
|
251
|
+
TLS 1.3, mTLS, X.509, ALPN, certificate helpers, cipher policy, and related validation surfaces are concentrated here so runtime and protocol layers can consume a consistent security boundary.
|
|
252
|
+
|
|
253
|
+
## Features
|
|
254
|
+
|
|
255
|
+
- Owns tls, tls13, x509, alpn, cipher policy, and certificate helpers inside the Tigrcorn split-package architecture.
|
|
256
|
+
- Publishes the <code>tigrcorn_security</code> import surface for module-oriented public surfaces.
|
|
257
|
+
- Declared runtime dependencies: tigrcorn-core, tigrcorn-config.
|
|
258
|
+
- Optional dependency surface: cryptography.
|
|
259
|
+
- Supports Python 3.10, 3.11, 3.12, 3.13, and 3.14.
|
|
222
260
|
|
|
223
261
|
## Use It When
|
|
224
262
|
|
|
225
|
-
Use <code>tigrcorn-security</code> when you need
|
|
263
|
+
Use <code>tigrcorn-security</code> when you need security-level behavior without pulling the entire server stack into the import surface. It is part of Tigrcorn's split-package architecture, so it can be installed independently while remaining linked to the rest of the Tigrcorn package family on PyPI.
|
|
226
264
|
|
|
227
265
|
## Import Surface
|
|
228
266
|
|
|
229
|
-
|
|
267
|
+
```python
|
|
230
268
|
import tigrcorn_security
|
|
231
269
|
|
|
232
270
|
print(tigrcorn_security.__name__)
|
|
233
|
-
|
|
271
|
+
```
|
|
234
272
|
|
|
235
273
|
The package exposes its supported public surface through the <code>tigrcorn_security</code> namespace. The root [tigrcorn](https://pypi.org/project/tigrcorn/) package keeps compatibility shims for users who install the full server distribution.
|
|
236
274
|
|
|
275
|
+
## Related Packages
|
|
276
|
+
|
|
277
|
+
- [tigrcorn-core](https://pypi.org/project/tigrcorn-core/)
|
|
278
|
+
- [tigrcorn-config](https://pypi.org/project/tigrcorn-config/)
|
|
279
|
+
- [tigrcorn](https://pypi.org/project/tigrcorn/)
|
|
280
|
+
|
|
237
281
|
## Package Graph
|
|
238
282
|
|
|
239
|
-
[tigrcorn](https://pypi.org/project/tigrcorn/) | [tigrcorn-
|
|
283
|
+
[tigrcorn-core](https://pypi.org/project/tigrcorn-core/) | [tigrcorn-config](https://pypi.org/project/tigrcorn-config/) | [tigrcorn-http](https://pypi.org/project/tigrcorn-http/) | [tigrcorn-asgi](https://pypi.org/project/tigrcorn-asgi/) | [tigrcorn-contract](https://pypi.org/project/tigrcorn-contract/) | [tigrcorn-transports](https://pypi.org/project/tigrcorn-transports/) | [tigrcorn-security](https://pypi.org/project/tigrcorn-security/) | [tigrcorn-protocols](https://pypi.org/project/tigrcorn-protocols/) | [tigrcorn-static](https://pypi.org/project/tigrcorn-static/) | [tigrcorn-observability](https://pypi.org/project/tigrcorn-observability/) | [tigrcorn-runtime](https://pypi.org/project/tigrcorn-runtime/) | [tigrcorn-compat](https://pypi.org/project/tigrcorn-compat/) | [tigrcorn-certification](https://pypi.org/project/tigrcorn-certification/)
|
|
284
|
+
|
|
285
|
+
## Best Practices
|
|
286
|
+
|
|
287
|
+
- Keep TLS, certificate, and ALPN logic centralized here instead of scattering policy code across runtime modules.
|
|
288
|
+
- Pull cryptography-backed extras only for deployments that need X.509 or certificate helper behavior.
|
|
289
|
+
- Document operator-visible security behavior against this package boundary before claiming support at the repo root.
|
|
290
|
+
|
|
291
|
+
## License
|
|
292
|
+
|
|
293
|
+
Apache-2.0
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<h1>tigrcorn-security</h1>
|
|
3
|
+
<img
|
|
4
|
+
src="https://raw.githubusercontent.com/Tigrbl/tigrcorn/master/assets/tigrcorn_logo.png"
|
|
5
|
+
alt="Tigrcorn tiger-unicorn logo"
|
|
6
|
+
width="140"
|
|
7
|
+
/>
|
|
8
|
+
|
|
9
|
+
<p><strong>TLS 1.3, mTLS, X.509, ALPN, OCSP, CRL, and certificate policy surfaces for the Tigrcorn Python web server.</strong></p>
|
|
10
|
+
|
|
11
|
+
<a href="https://pypi.org/project/tigrcorn-security/"><img alt="PyPI version for tigrcorn-security" src="https://img.shields.io/pypi/v/tigrcorn-security?label=PyPI"></a>
|
|
12
|
+
<a href="https://pypi.org/project/tigrcorn-security/"><img alt="tigrcorn-security package on PyPI" src="https://img.shields.io/badge/package-PyPI-blue"></a>
|
|
13
|
+
<a href="https://pepy.tech/project/tigrcorn-security"><img alt="Downloads for tigrcorn-security" src="https://static.pepy.tech/badge/tigrcorn-security"></a>
|
|
14
|
+
<a href="https://github.com/tigrbl/tigrcorn/blob/master/pkgs/tigrcorn-security/README.md"><img alt="Hits for tigrcorn-security README" src="https://hits.sh/github.com/tigrbl/tigrcorn/blob/master/pkgs/tigrcorn-security/README.md.svg?label=hits"></a>
|
|
15
|
+
<a href="LICENSE"><img alt="Apache 2.0 license" src="https://img.shields.io/badge/license-Apache%202.0-525252"></a>
|
|
16
|
+
<a href="pyproject.toml"><img alt="Python 3.10 | 3.11 | 3.12 | 3.13 | 3.14 supported" src="https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-3776ab"></a>
|
|
17
|
+
<a href="https://pypi.org/project/tigrcorn-security/"><img alt="security role package" src="https://img.shields.io/badge/role-security-0a7f5a"></a>
|
|
18
|
+
</div>
|
|
19
|
+
|
|
20
|
+
<p align="center"><a href="https://github.com/Tigrbl/tigrcorn/blob/master/.ssot/registry.json"><img alt="SSOT governed" src="https://img.shields.io/badge/SSOT-governed-2f6f4e.svg"></a> <a href="https://discord.gg/jzvrbEtTtt"><img alt="Discord" src="https://img.shields.io/badge/Discord-Join%20chat-5865F2?logo=discord&logoColor=white"></a></p>
|
|
21
|
+
|
|
22
|
+
## Install
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
uv add tigrcorn-security
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
pip install tigrcorn-security
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Use the aggregate [tigrcorn](https://pypi.org/project/tigrcorn/) distribution when you want the full ASGI3 Python web server stack. Install <code>tigrcorn-security</code> directly when you want only this package boundary and its declared dependencies.
|
|
33
|
+
|
|
34
|
+
## What It Owns
|
|
35
|
+
|
|
36
|
+
<code>tigrcorn-security</code> owns tls, tls13, x509, alpn, cipher policy, and certificate helpers. Its import package is <code>tigrcorn_security</code>, and its declared package dependencies are: tigrcorn-core, tigrcorn-config.
|
|
37
|
+
|
|
38
|
+
This package page is written for developers searching for Tigrcorn ASGI3 server components, Python web server packages, HTTP/3 and QUIC support, WebSocket and WebTransport-adjacent surfaces, and Apache 2.0 licensed infrastructure.
|
|
39
|
+
|
|
40
|
+
## Why Use This?
|
|
41
|
+
|
|
42
|
+
Use <code>tigrcorn-security</code> when you want the security layer as a direct install target instead of the full server bundle. It lets application, operator, or certification workflows depend on this boundary explicitly while keeping the broader Tigrcorn runtime assembled from smaller repo-owned package surfaces.
|
|
43
|
+
|
|
44
|
+
## FAQ
|
|
45
|
+
|
|
46
|
+
### What does this package export?
|
|
47
|
+
|
|
48
|
+
The package exports through the <code>tigrcorn_security</code> namespace and keeps the root <code>tigrcorn</code> package as the compatibility umbrella.
|
|
49
|
+
|
|
50
|
+
### Which boundary does this package own?
|
|
51
|
+
|
|
52
|
+
It is the package boundary for tls, tls13, x509, alpn, cipher policy, and certificate helpers in the Tigrcorn package graph.
|
|
53
|
+
|
|
54
|
+
### Which security surfaces live here?
|
|
55
|
+
|
|
56
|
+
TLS 1.3, mTLS, X.509, ALPN, certificate helpers, cipher policy, and related validation surfaces are concentrated here so runtime and protocol layers can consume a consistent security boundary.
|
|
57
|
+
|
|
58
|
+
## Features
|
|
59
|
+
|
|
60
|
+
- Owns tls, tls13, x509, alpn, cipher policy, and certificate helpers inside the Tigrcorn split-package architecture.
|
|
61
|
+
- Publishes the <code>tigrcorn_security</code> import surface for module-oriented public surfaces.
|
|
62
|
+
- Declared runtime dependencies: tigrcorn-core, tigrcorn-config.
|
|
63
|
+
- Optional dependency surface: cryptography.
|
|
64
|
+
- Supports Python 3.10, 3.11, 3.12, 3.13, and 3.14.
|
|
65
|
+
|
|
66
|
+
## Use It When
|
|
67
|
+
|
|
68
|
+
Use <code>tigrcorn-security</code> when you need security-level behavior without pulling the entire server stack into the import surface. It is part of Tigrcorn's split-package architecture, so it can be installed independently while remaining linked to the rest of the Tigrcorn package family on PyPI.
|
|
69
|
+
|
|
70
|
+
## Import Surface
|
|
71
|
+
|
|
72
|
+
```python
|
|
73
|
+
import tigrcorn_security
|
|
74
|
+
|
|
75
|
+
print(tigrcorn_security.__name__)
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
The package exposes its supported public surface through the <code>tigrcorn_security</code> namespace. The root [tigrcorn](https://pypi.org/project/tigrcorn/) package keeps compatibility shims for users who install the full server distribution.
|
|
79
|
+
|
|
80
|
+
## Related Packages
|
|
81
|
+
|
|
82
|
+
- [tigrcorn-core](https://pypi.org/project/tigrcorn-core/)
|
|
83
|
+
- [tigrcorn-config](https://pypi.org/project/tigrcorn-config/)
|
|
84
|
+
- [tigrcorn](https://pypi.org/project/tigrcorn/)
|
|
85
|
+
|
|
86
|
+
## Package Graph
|
|
87
|
+
|
|
88
|
+
[tigrcorn-core](https://pypi.org/project/tigrcorn-core/) | [tigrcorn-config](https://pypi.org/project/tigrcorn-config/) | [tigrcorn-http](https://pypi.org/project/tigrcorn-http/) | [tigrcorn-asgi](https://pypi.org/project/tigrcorn-asgi/) | [tigrcorn-contract](https://pypi.org/project/tigrcorn-contract/) | [tigrcorn-transports](https://pypi.org/project/tigrcorn-transports/) | [tigrcorn-security](https://pypi.org/project/tigrcorn-security/) | [tigrcorn-protocols](https://pypi.org/project/tigrcorn-protocols/) | [tigrcorn-static](https://pypi.org/project/tigrcorn-static/) | [tigrcorn-observability](https://pypi.org/project/tigrcorn-observability/) | [tigrcorn-runtime](https://pypi.org/project/tigrcorn-runtime/) | [tigrcorn-compat](https://pypi.org/project/tigrcorn-compat/) | [tigrcorn-certification](https://pypi.org/project/tigrcorn-certification/)
|
|
89
|
+
|
|
90
|
+
## Best Practices
|
|
91
|
+
|
|
92
|
+
- Keep TLS, certificate, and ALPN logic centralized here instead of scattering policy code across runtime modules.
|
|
93
|
+
- Pull cryptography-backed extras only for deployments that need X.509 or certificate helper behavior.
|
|
94
|
+
- Document operator-visible security behavior against this package boundary before claiming support at the repo root.
|
|
95
|
+
|
|
96
|
+
## License
|
|
97
|
+
|
|
98
|
+
Apache-2.0
|
|
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tigrcorn-security"
|
|
7
|
-
version = "0.3.16.
|
|
7
|
+
version = "0.3.16.dev12"
|
|
8
8
|
description = "TLS 1.3, mTLS, X.509, ALPN, OCSP, CRL, and certificate policy surfaces for the Tigrcorn Python web server."
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
requires-python = ">=3.
|
|
10
|
+
requires-python = ">=3.10,<3.15"
|
|
11
11
|
license = {file = "LICENSE"}
|
|
12
12
|
authors = [{name = "Jacob Stewart", email = "jacob@swarmauri.com"}]
|
|
13
13
|
keywords = ["tigrcorn", "tls", "tls13", "x509", "mtls", "alpn", "certificate-validation", "python-security"]
|
|
@@ -19,17 +19,19 @@ classifiers = [
|
|
|
19
19
|
"Operating System :: OS Independent",
|
|
20
20
|
"Programming Language :: Python :: 3",
|
|
21
21
|
"Programming Language :: Python :: 3 :: Only",
|
|
22
|
+
"Programming Language :: Python :: 3.10",
|
|
22
23
|
"Programming Language :: Python :: 3.11",
|
|
23
24
|
"Programming Language :: Python :: 3.12",
|
|
24
25
|
"Programming Language :: Python :: 3.13",
|
|
26
|
+
"Programming Language :: Python :: 3.14",
|
|
25
27
|
"Topic :: Internet :: WWW/HTTP",
|
|
26
28
|
"Topic :: Security",
|
|
27
29
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
28
30
|
"Typing :: Typed",
|
|
29
31
|
]
|
|
30
32
|
dependencies = [
|
|
31
|
-
"tigrcorn-core==0.3.16.
|
|
32
|
-
"tigrcorn-config==0.3.16.
|
|
33
|
+
"tigrcorn-core==0.3.16.dev12",
|
|
34
|
+
"tigrcorn-config==0.3.16.dev12",
|
|
33
35
|
]
|
|
34
36
|
|
|
35
37
|
[project.optional-dependencies]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrcorn-security
|
|
3
|
-
Version: 0.3.16.
|
|
3
|
+
Version: 0.3.16.dev12
|
|
4
4
|
Summary: TLS 1.3, mTLS, X.509, ALPN, OCSP, CRL, and certificate policy surfaces for the Tigrcorn Python web server.
|
|
5
5
|
Author-email: Jacob Stewart <jacob@swarmauri.com>
|
|
6
6
|
License: Apache License
|
|
@@ -175,65 +175,119 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
175
175
|
Classifier: Operating System :: OS Independent
|
|
176
176
|
Classifier: Programming Language :: Python :: 3
|
|
177
177
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
178
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
178
179
|
Classifier: Programming Language :: Python :: 3.11
|
|
179
180
|
Classifier: Programming Language :: Python :: 3.12
|
|
180
181
|
Classifier: Programming Language :: Python :: 3.13
|
|
182
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
181
183
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
182
184
|
Classifier: Topic :: Security
|
|
183
185
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
184
186
|
Classifier: Typing :: Typed
|
|
185
|
-
Requires-Python:
|
|
187
|
+
Requires-Python: <3.15,>=3.10
|
|
186
188
|
Description-Content-Type: text/markdown
|
|
187
189
|
License-File: LICENSE
|
|
188
|
-
Requires-Dist: tigrcorn-core==0.3.16.
|
|
189
|
-
Requires-Dist: tigrcorn-config==0.3.16.
|
|
190
|
+
Requires-Dist: tigrcorn-core==0.3.16.dev12
|
|
191
|
+
Requires-Dist: tigrcorn-config==0.3.16.dev12
|
|
190
192
|
Provides-Extra: x509
|
|
191
193
|
Requires-Dist: cryptography>=46.0.0; extra == "x509"
|
|
192
194
|
Dynamic: license-file
|
|
193
195
|
|
|
194
196
|
<div align="center">
|
|
195
197
|
<h1>tigrcorn-security</h1>
|
|
198
|
+
<img
|
|
199
|
+
src="https://raw.githubusercontent.com/Tigrbl/tigrcorn/master/assets/tigrcorn_logo.png"
|
|
200
|
+
alt="Tigrcorn tiger-unicorn logo"
|
|
201
|
+
width="140"
|
|
202
|
+
/>
|
|
196
203
|
|
|
197
204
|
<p><strong>TLS 1.3, mTLS, X.509, ALPN, OCSP, CRL, and certificate policy surfaces for the Tigrcorn Python web server.</strong></p>
|
|
198
205
|
|
|
199
206
|
<a href="https://pypi.org/project/tigrcorn-security/"><img alt="PyPI version for tigrcorn-security" src="https://img.shields.io/pypi/v/tigrcorn-security?label=PyPI"></a>
|
|
200
207
|
<a href="https://pypi.org/project/tigrcorn-security/"><img alt="tigrcorn-security package on PyPI" src="https://img.shields.io/badge/package-PyPI-blue"></a>
|
|
208
|
+
<a href="https://pepy.tech/project/tigrcorn-security"><img alt="Downloads for tigrcorn-security" src="https://static.pepy.tech/badge/tigrcorn-security"></a>
|
|
209
|
+
<a href="https://github.com/tigrbl/tigrcorn/blob/master/pkgs/tigrcorn-security/README.md"><img alt="Hits for tigrcorn-security README" src="https://hits.sh/github.com/tigrbl/tigrcorn/blob/master/pkgs/tigrcorn-security/README.md.svg?label=hits"></a>
|
|
201
210
|
<a href="LICENSE"><img alt="Apache 2.0 license" src="https://img.shields.io/badge/license-Apache%202.0-525252"></a>
|
|
202
|
-
<a href="pyproject.toml"><img alt="Python 3.11 supported" src="https://img.shields.io/badge/python-3.11-3776ab"></a>
|
|
203
|
-
<a href="pyproject.toml"><img alt="Python 3.12 supported" src="https://img.shields.io/badge/python-3.12-3776ab"></a>
|
|
204
|
-
<a href="pyproject.toml"><img alt="Python 3.13 supported" src="https://img.shields.io/badge/python-3.13-3776ab"></a>
|
|
205
|
-
<a href="src/tigrcorn_security/py.typed"><img alt="typed package" src="https://img.shields.io/badge/typed-py.typed-2f7ed8"></a>
|
|
211
|
+
<a href="pyproject.toml"><img alt="Python 3.10 | 3.11 | 3.12 | 3.13 | 3.14 supported" src="https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-3776ab"></a>
|
|
206
212
|
<a href="https://pypi.org/project/tigrcorn-security/"><img alt="security role package" src="https://img.shields.io/badge/role-security-0a7f5a"></a>
|
|
207
213
|
</div>
|
|
208
214
|
|
|
215
|
+
<p align="center"><a href="https://github.com/Tigrbl/tigrcorn/blob/master/.ssot/registry.json"><img alt="SSOT governed" src="https://img.shields.io/badge/SSOT-governed-2f6f4e.svg"></a> <a href="https://discord.gg/jzvrbEtTtt"><img alt="Discord" src="https://img.shields.io/badge/Discord-Join%20chat-5865F2?logo=discord&logoColor=white"></a></p>
|
|
216
|
+
|
|
209
217
|
## Install
|
|
210
218
|
|
|
211
|
-
|
|
219
|
+
```bash
|
|
220
|
+
uv add tigrcorn-security
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
```bash
|
|
212
224
|
pip install tigrcorn-security
|
|
213
|
-
|
|
225
|
+
```
|
|
214
226
|
|
|
215
227
|
Use the aggregate [tigrcorn](https://pypi.org/project/tigrcorn/) distribution when you want the full ASGI3 Python web server stack. Install <code>tigrcorn-security</code> directly when you want only this package boundary and its declared dependencies.
|
|
216
228
|
|
|
217
229
|
## What It Owns
|
|
218
230
|
|
|
219
|
-
<code>tigrcorn-security</code> owns
|
|
231
|
+
<code>tigrcorn-security</code> owns tls, tls13, x509, alpn, cipher policy, and certificate helpers. Its import package is <code>tigrcorn_security</code>, and its declared package dependencies are: tigrcorn-core, tigrcorn-config.
|
|
232
|
+
|
|
233
|
+
This package page is written for developers searching for Tigrcorn ASGI3 server components, Python web server packages, HTTP/3 and QUIC support, WebSocket and WebTransport-adjacent surfaces, and Apache 2.0 licensed infrastructure.
|
|
234
|
+
|
|
235
|
+
## Why Use This?
|
|
236
|
+
|
|
237
|
+
Use <code>tigrcorn-security</code> when you want the security layer as a direct install target instead of the full server bundle. It lets application, operator, or certification workflows depend on this boundary explicitly while keeping the broader Tigrcorn runtime assembled from smaller repo-owned package surfaces.
|
|
238
|
+
|
|
239
|
+
## FAQ
|
|
240
|
+
|
|
241
|
+
### What does this package export?
|
|
242
|
+
|
|
243
|
+
The package exports through the <code>tigrcorn_security</code> namespace and keeps the root <code>tigrcorn</code> package as the compatibility umbrella.
|
|
244
|
+
|
|
245
|
+
### Which boundary does this package own?
|
|
246
|
+
|
|
247
|
+
It is the package boundary for tls, tls13, x509, alpn, cipher policy, and certificate helpers in the Tigrcorn package graph.
|
|
220
248
|
|
|
221
|
-
|
|
249
|
+
### Which security surfaces live here?
|
|
250
|
+
|
|
251
|
+
TLS 1.3, mTLS, X.509, ALPN, certificate helpers, cipher policy, and related validation surfaces are concentrated here so runtime and protocol layers can consume a consistent security boundary.
|
|
252
|
+
|
|
253
|
+
## Features
|
|
254
|
+
|
|
255
|
+
- Owns tls, tls13, x509, alpn, cipher policy, and certificate helpers inside the Tigrcorn split-package architecture.
|
|
256
|
+
- Publishes the <code>tigrcorn_security</code> import surface for module-oriented public surfaces.
|
|
257
|
+
- Declared runtime dependencies: tigrcorn-core, tigrcorn-config.
|
|
258
|
+
- Optional dependency surface: cryptography.
|
|
259
|
+
- Supports Python 3.10, 3.11, 3.12, 3.13, and 3.14.
|
|
222
260
|
|
|
223
261
|
## Use It When
|
|
224
262
|
|
|
225
|
-
Use <code>tigrcorn-security</code> when you need
|
|
263
|
+
Use <code>tigrcorn-security</code> when you need security-level behavior without pulling the entire server stack into the import surface. It is part of Tigrcorn's split-package architecture, so it can be installed independently while remaining linked to the rest of the Tigrcorn package family on PyPI.
|
|
226
264
|
|
|
227
265
|
## Import Surface
|
|
228
266
|
|
|
229
|
-
|
|
267
|
+
```python
|
|
230
268
|
import tigrcorn_security
|
|
231
269
|
|
|
232
270
|
print(tigrcorn_security.__name__)
|
|
233
|
-
|
|
271
|
+
```
|
|
234
272
|
|
|
235
273
|
The package exposes its supported public surface through the <code>tigrcorn_security</code> namespace. The root [tigrcorn](https://pypi.org/project/tigrcorn/) package keeps compatibility shims for users who install the full server distribution.
|
|
236
274
|
|
|
275
|
+
## Related Packages
|
|
276
|
+
|
|
277
|
+
- [tigrcorn-core](https://pypi.org/project/tigrcorn-core/)
|
|
278
|
+
- [tigrcorn-config](https://pypi.org/project/tigrcorn-config/)
|
|
279
|
+
- [tigrcorn](https://pypi.org/project/tigrcorn/)
|
|
280
|
+
|
|
237
281
|
## Package Graph
|
|
238
282
|
|
|
239
|
-
[tigrcorn](https://pypi.org/project/tigrcorn/) | [tigrcorn-
|
|
283
|
+
[tigrcorn-core](https://pypi.org/project/tigrcorn-core/) | [tigrcorn-config](https://pypi.org/project/tigrcorn-config/) | [tigrcorn-http](https://pypi.org/project/tigrcorn-http/) | [tigrcorn-asgi](https://pypi.org/project/tigrcorn-asgi/) | [tigrcorn-contract](https://pypi.org/project/tigrcorn-contract/) | [tigrcorn-transports](https://pypi.org/project/tigrcorn-transports/) | [tigrcorn-security](https://pypi.org/project/tigrcorn-security/) | [tigrcorn-protocols](https://pypi.org/project/tigrcorn-protocols/) | [tigrcorn-static](https://pypi.org/project/tigrcorn-static/) | [tigrcorn-observability](https://pypi.org/project/tigrcorn-observability/) | [tigrcorn-runtime](https://pypi.org/project/tigrcorn-runtime/) | [tigrcorn-compat](https://pypi.org/project/tigrcorn-compat/) | [tigrcorn-certification](https://pypi.org/project/tigrcorn-certification/)
|
|
284
|
+
|
|
285
|
+
## Best Practices
|
|
286
|
+
|
|
287
|
+
- Keep TLS, certificate, and ALPN logic centralized here instead of scattering policy code across runtime modules.
|
|
288
|
+
- Pull cryptography-backed extras only for deployments that need X.509 or certificate helper behavior.
|
|
289
|
+
- Document operator-visible security behavior against this package boundary before claiming support at the repo root.
|
|
290
|
+
|
|
291
|
+
## License
|
|
292
|
+
|
|
293
|
+
Apache-2.0
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
<div align="center">
|
|
2
|
-
<h1>tigrcorn-security</h1>
|
|
3
|
-
|
|
4
|
-
<p><strong>TLS 1.3, mTLS, X.509, ALPN, OCSP, CRL, and certificate policy surfaces for the Tigrcorn Python web server.</strong></p>
|
|
5
|
-
|
|
6
|
-
<a href="https://pypi.org/project/tigrcorn-security/"><img alt="PyPI version for tigrcorn-security" src="https://img.shields.io/pypi/v/tigrcorn-security?label=PyPI"></a>
|
|
7
|
-
<a href="https://pypi.org/project/tigrcorn-security/"><img alt="tigrcorn-security package on PyPI" src="https://img.shields.io/badge/package-PyPI-blue"></a>
|
|
8
|
-
<a href="LICENSE"><img alt="Apache 2.0 license" src="https://img.shields.io/badge/license-Apache%202.0-525252"></a>
|
|
9
|
-
<a href="pyproject.toml"><img alt="Python 3.11 supported" src="https://img.shields.io/badge/python-3.11-3776ab"></a>
|
|
10
|
-
<a href="pyproject.toml"><img alt="Python 3.12 supported" src="https://img.shields.io/badge/python-3.12-3776ab"></a>
|
|
11
|
-
<a href="pyproject.toml"><img alt="Python 3.13 supported" src="https://img.shields.io/badge/python-3.13-3776ab"></a>
|
|
12
|
-
<a href="src/tigrcorn_security/py.typed"><img alt="typed package" src="https://img.shields.io/badge/typed-py.typed-2f7ed8"></a>
|
|
13
|
-
<a href="https://pypi.org/project/tigrcorn-security/"><img alt="security role package" src="https://img.shields.io/badge/role-security-0a7f5a"></a>
|
|
14
|
-
</div>
|
|
15
|
-
|
|
16
|
-
## Install
|
|
17
|
-
|
|
18
|
-
~~~bash
|
|
19
|
-
pip install tigrcorn-security
|
|
20
|
-
~~~
|
|
21
|
-
|
|
22
|
-
Use the aggregate [tigrcorn](https://pypi.org/project/tigrcorn/) distribution when you want the full ASGI3 Python web server stack. Install <code>tigrcorn-security</code> directly when you want only this package boundary and its declared dependencies.
|
|
23
|
-
|
|
24
|
-
## What It Owns
|
|
25
|
-
|
|
26
|
-
<code>tigrcorn-security</code> owns TLS, TLS 1.3, X.509, ALPN, cipher policy, certificate helpers, OCSP, CRL, and validation policy surfaces. Its import package is <code>tigrcorn_security</code>, and its declared package dependencies are: tigrcorn-core, tigrcorn-config.
|
|
27
|
-
|
|
28
|
-
This package page is written for developers searching for Tigrcorn ASGI3 server components, Python web server packages, HTTP/3 and QUIC support, WebSocket and WebTransport runtime surfaces, typed package boundaries, and Apache 2.0 licensed infrastructure.
|
|
29
|
-
|
|
30
|
-
## Use It When
|
|
31
|
-
|
|
32
|
-
Use <code>tigrcorn-security</code> when you need Tigrcorn security primitives for TLS configuration, certificate validation, ALPN, mTLS, or Python web server hardening. It is part of Tigrcorn's split-package architecture, so it can be installed independently while remaining linked to the rest of the Tigrcorn package family on PyPI.
|
|
33
|
-
|
|
34
|
-
## Import Surface
|
|
35
|
-
|
|
36
|
-
~~~python
|
|
37
|
-
import tigrcorn_security
|
|
38
|
-
|
|
39
|
-
print(tigrcorn_security.__name__)
|
|
40
|
-
~~~
|
|
41
|
-
|
|
42
|
-
The package exposes its supported public surface through the <code>tigrcorn_security</code> namespace. The root [tigrcorn](https://pypi.org/project/tigrcorn/) package keeps compatibility shims for users who install the full server distribution.
|
|
43
|
-
|
|
44
|
-
## Package Graph
|
|
45
|
-
|
|
46
|
-
[tigrcorn](https://pypi.org/project/tigrcorn/) | [tigrcorn-core](https://pypi.org/project/tigrcorn-core/) | [tigrcorn-config](https://pypi.org/project/tigrcorn-config/) | [tigrcorn-asgi](https://pypi.org/project/tigrcorn-asgi/) | [tigrcorn-contract](https://pypi.org/project/tigrcorn-contract/) | [tigrcorn-transports](https://pypi.org/project/tigrcorn-transports/) | [tigrcorn-protocols](https://pypi.org/project/tigrcorn-protocols/) | [tigrcorn-http](https://pypi.org/project/tigrcorn-http/) | [tigrcorn-security](https://pypi.org/project/tigrcorn-security/) | [tigrcorn-runtime](https://pypi.org/project/tigrcorn-runtime/) | [tigrcorn-static](https://pypi.org/project/tigrcorn-static/) | [tigrcorn-observability](https://pypi.org/project/tigrcorn-observability/) | [tigrcorn-compat](https://pypi.org/project/tigrcorn-compat/) | [tigrcorn-certification](https://pypi.org/project/tigrcorn-certification/)
|
|
File without changes
|
|
File without changes
|
{tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/__init__.py
RENAMED
|
File without changes
|
{tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/alpn.py
RENAMED
|
File without changes
|
{tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/certs.py
RENAMED
|
File without changes
|
{tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/policies.py
RENAMED
|
File without changes
|
{tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/py.typed
RENAMED
|
File without changes
|
{tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/tls.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tigrcorn_security-0.3.16.dev5 → tigrcorn_security-0.3.16.dev12}/src/tigrcorn_security/x509/path.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|