zephr 0.1.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.
- zephr-0.1.0/.gitignore +56 -0
- zephr-0.1.0/PKG-INFO +22 -0
- zephr-0.1.0/README.md +24 -0
- zephr-0.1.0/pyproject.toml +30 -0
- zephr-0.1.0/src/zephr/__init__.py +3 -0
zephr-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# Dependencies
|
|
2
|
+
node_modules/
|
|
3
|
+
package-lock.json
|
|
4
|
+
|
|
5
|
+
# Build outputs
|
|
6
|
+
dist/
|
|
7
|
+
.build/
|
|
8
|
+
build/
|
|
9
|
+
lambda-package/
|
|
10
|
+
lambda-package.zip
|
|
11
|
+
|
|
12
|
+
# Environment
|
|
13
|
+
.env
|
|
14
|
+
.env.local
|
|
15
|
+
.env.production
|
|
16
|
+
|
|
17
|
+
# Logs
|
|
18
|
+
logs/
|
|
19
|
+
*.log
|
|
20
|
+
npm-debug.log*
|
|
21
|
+
|
|
22
|
+
# Testing
|
|
23
|
+
coverage/
|
|
24
|
+
.nyc_output/
|
|
25
|
+
|
|
26
|
+
# IDE
|
|
27
|
+
.vscode/
|
|
28
|
+
.idea/
|
|
29
|
+
*.swp
|
|
30
|
+
*.swo
|
|
31
|
+
*~
|
|
32
|
+
|
|
33
|
+
# OS
|
|
34
|
+
.DS_Store
|
|
35
|
+
Thumbs.db
|
|
36
|
+
|
|
37
|
+
# Database
|
|
38
|
+
*.db
|
|
39
|
+
*.db-journal
|
|
40
|
+
*.db-shm
|
|
41
|
+
*.db-wal
|
|
42
|
+
|
|
43
|
+
# Terraform
|
|
44
|
+
infrastructure/terraform/.terraform/
|
|
45
|
+
infrastructure/terraform/.terraform.lock.hcl
|
|
46
|
+
infrastructure/terraform/terraform.tfstate
|
|
47
|
+
infrastructure/terraform/terraform.tfstate.backup
|
|
48
|
+
infrastructure/terraform/*.tfvars
|
|
49
|
+
.terraform-outputs.json
|
|
50
|
+
|
|
51
|
+
# SonarQube
|
|
52
|
+
.scannerwork/
|
|
53
|
+
.sonar/
|
|
54
|
+
|
|
55
|
+
# Legacy files
|
|
56
|
+
public/app-legacy.js
|
zephr-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: zephr
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Secure one-time secret sharing with zero-knowledge encryption
|
|
5
|
+
Project-URL: Homepage, https://zephr.io
|
|
6
|
+
Project-URL: Repository, https://github.com/gpguillot/zephr
|
|
7
|
+
Project-URL: Documentation, https://zephr.io/overview
|
|
8
|
+
Project-URL: Issues, https://github.com/gpguillot/zephr/issues
|
|
9
|
+
Author-email: Zephr Technologies <contact@zephr.io>
|
|
10
|
+
License-Expression: MIT
|
|
11
|
+
Keywords: aes-gcm,agent,encryption,one-time,secrets,security,zero-knowledge
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Communications
|
|
21
|
+
Classifier: Topic :: Security :: Cryptography
|
|
22
|
+
Requires-Python: >=3.10
|
zephr-0.1.0/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Zephr
|
|
2
|
+
|
|
3
|
+
Secure one-time secret sharing with zero-knowledge encryption.
|
|
4
|
+
|
|
5
|
+
Zephr encrypts secrets client-side using AES-GCM-256 and delivers them through one-time links. The server never sees plaintext or encryption keys.
|
|
6
|
+
|
|
7
|
+
## Status
|
|
8
|
+
|
|
9
|
+
This package is a placeholder for the upcoming Python SDK. The full SDK will provide:
|
|
10
|
+
|
|
11
|
+
- Programmatic secret creation and retrieval
|
|
12
|
+
- AES-GCM-256 encryption compatible with the Zephr web interface and CLI
|
|
13
|
+
- Agent-to-agent cryptographic handoff support
|
|
14
|
+
- Async and sync interfaces
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- Website: [zephr.io](https://zephr.io)
|
|
19
|
+
- CLI (Node.js): [@zephr/cli](https://www.npmjs.com/package/@zephr/cli)
|
|
20
|
+
- Source: [github.com/gpguillot/zephr](https://github.com/gpguillot/zephr)
|
|
21
|
+
|
|
22
|
+
## License
|
|
23
|
+
|
|
24
|
+
MIT
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "zephr"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Secure one-time secret sharing with zero-knowledge encryption"
|
|
9
|
+
license = "MIT"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
authors = [{ name = "Zephr Technologies", email = "contact@zephr.io" }]
|
|
12
|
+
keywords = ["encryption", "secrets", "zero-knowledge", "aes-gcm", "one-time", "security", "agent"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 3 - Alpha",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3.10",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
"Programming Language :: Python :: 3.12",
|
|
21
|
+
"Programming Language :: Python :: 3.13",
|
|
22
|
+
"Topic :: Security :: Cryptography",
|
|
23
|
+
"Topic :: Communications",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[project.urls]
|
|
27
|
+
Homepage = "https://zephr.io"
|
|
28
|
+
Repository = "https://github.com/gpguillot/zephr"
|
|
29
|
+
Documentation = "https://zephr.io/overview"
|
|
30
|
+
Issues = "https://github.com/gpguillot/zephr/issues"
|