fieldseal 0.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.
- fieldseal-0.0.0/PKG-INFO +31 -0
- fieldseal-0.0.0/README.md +17 -0
- fieldseal-0.0.0/pyproject.toml +24 -0
- fieldseal-0.0.0/setup.cfg +4 -0
- fieldseal-0.0.0/src/fieldseal/__init__.py +20 -0
- fieldseal-0.0.0/src/fieldseal.egg-info/PKG-INFO +31 -0
- fieldseal-0.0.0/src/fieldseal.egg-info/SOURCES.txt +7 -0
- fieldseal-0.0.0/src/fieldseal.egg-info/dependency_links.txt +1 -0
- fieldseal-0.0.0/src/fieldseal.egg-info/top_level.txt +1 -0
fieldseal-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fieldseal
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder for Fieldseal — transparent field-level encryption-at-rest at the data-access layer. Not yet released; the Python core arrives with Phase 1.
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://fieldseal.dev
|
|
7
|
+
Project-URL: Repository, https://github.com/fieldseal-dev/fieldseal-spec
|
|
8
|
+
Keywords: encryption,field-level-encryption,encryption-at-rest,aead,orm
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Topic :: Security :: Cryptography
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# fieldseal
|
|
16
|
+
|
|
17
|
+
**This is a name-reservation placeholder. There is no usable code in this package.**
|
|
18
|
+
|
|
19
|
+
Fieldseal is a portable specification and reference implementations for transparent
|
|
20
|
+
field-level encryption-at-rest at the data-access layer. The central claim: a value
|
|
21
|
+
encrypted by implementation A in one language is decryptable by implementation B in
|
|
22
|
+
another language using the same key, verified by machine-readable test vectors in CI.
|
|
23
|
+
|
|
24
|
+
The project is in Phase 0 (specification and cryptographic review). The Python core
|
|
25
|
+
library will be published under this name in Phase 1.
|
|
26
|
+
|
|
27
|
+
- Project home: <https://fieldseal.dev>
|
|
28
|
+
- Repository: <https://github.com/fieldseal-dev/fieldseal-spec> (private until public release)
|
|
29
|
+
|
|
30
|
+
If you believe this name reservation conflicts with your rights, contact
|
|
31
|
+
`contact@fieldseal.dev`.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# fieldseal
|
|
2
|
+
|
|
3
|
+
**This is a name-reservation placeholder. There is no usable code in this package.**
|
|
4
|
+
|
|
5
|
+
Fieldseal is a portable specification and reference implementations for transparent
|
|
6
|
+
field-level encryption-at-rest at the data-access layer. The central claim: a value
|
|
7
|
+
encrypted by implementation A in one language is decryptable by implementation B in
|
|
8
|
+
another language using the same key, verified by machine-readable test vectors in CI.
|
|
9
|
+
|
|
10
|
+
The project is in Phase 0 (specification and cryptographic review). The Python core
|
|
11
|
+
library will be published under this name in Phase 1.
|
|
12
|
+
|
|
13
|
+
- Project home: <https://fieldseal.dev>
|
|
14
|
+
- Repository: <https://github.com/fieldseal-dev/fieldseal-spec> (private until public release)
|
|
15
|
+
|
|
16
|
+
If you believe this name reservation conflicts with your rights, contact
|
|
17
|
+
`contact@fieldseal.dev`.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "fieldseal"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Placeholder for Fieldseal — transparent field-level encryption-at-rest at the data-access layer. Not yet released; the Python core arrives with Phase 1."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
keywords = ["encryption", "field-level-encryption", "encryption-at-rest", "aead", "orm"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Topic :: Security :: Cryptography",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Homepage = "https://fieldseal.dev"
|
|
21
|
+
Repository = "https://github.com/fieldseal-dev/fieldseal-spec"
|
|
22
|
+
|
|
23
|
+
[tool.setuptools.packages.find]
|
|
24
|
+
where = ["src"]
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"""Placeholder for the Fieldseal project — not yet released.
|
|
2
|
+
|
|
3
|
+
Fieldseal is a portable specification and reference implementations for
|
|
4
|
+
transparent field-level encryption-at-rest at the data-access layer. The
|
|
5
|
+
Python core library will ship under this name in Phase 1, following
|
|
6
|
+
independent cryptographic review of the specification.
|
|
7
|
+
|
|
8
|
+
See https://fieldseal.dev
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
__version__ = "0.0.0"
|
|
12
|
+
|
|
13
|
+
SPEC_URL = "https://fieldseal.dev"
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def __getattr__(name):
|
|
17
|
+
raise NotImplementedError(
|
|
18
|
+
"fieldseal is a name-reservation placeholder; the library is not yet "
|
|
19
|
+
"released. The Python core arrives in Phase 1. See https://fieldseal.dev"
|
|
20
|
+
)
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fieldseal
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder for Fieldseal — transparent field-level encryption-at-rest at the data-access layer. Not yet released; the Python core arrives with Phase 1.
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://fieldseal.dev
|
|
7
|
+
Project-URL: Repository, https://github.com/fieldseal-dev/fieldseal-spec
|
|
8
|
+
Keywords: encryption,field-level-encryption,encryption-at-rest,aead,orm
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Topic :: Security :: Cryptography
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# fieldseal
|
|
16
|
+
|
|
17
|
+
**This is a name-reservation placeholder. There is no usable code in this package.**
|
|
18
|
+
|
|
19
|
+
Fieldseal is a portable specification and reference implementations for transparent
|
|
20
|
+
field-level encryption-at-rest at the data-access layer. The central claim: a value
|
|
21
|
+
encrypted by implementation A in one language is decryptable by implementation B in
|
|
22
|
+
another language using the same key, verified by machine-readable test vectors in CI.
|
|
23
|
+
|
|
24
|
+
The project is in Phase 0 (specification and cryptographic review). The Python core
|
|
25
|
+
library will be published under this name in Phase 1.
|
|
26
|
+
|
|
27
|
+
- Project home: <https://fieldseal.dev>
|
|
28
|
+
- Repository: <https://github.com/fieldseal-dev/fieldseal-spec> (private until public release)
|
|
29
|
+
|
|
30
|
+
If you believe this name reservation conflicts with your rights, contact
|
|
31
|
+
`contact@fieldseal.dev`.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
fieldseal
|