deny-sh 0.0.1__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.
- deny_sh-0.0.1/PKG-INFO +20 -0
- deny_sh-0.0.1/README.md +5 -0
- deny_sh-0.0.1/deny_sh/__init__.py +2 -0
- deny_sh-0.0.1/deny_sh.egg-info/PKG-INFO +20 -0
- deny_sh-0.0.1/deny_sh.egg-info/SOURCES.txt +7 -0
- deny_sh-0.0.1/deny_sh.egg-info/dependency_links.txt +1 -0
- deny_sh-0.0.1/deny_sh.egg-info/top_level.txt +1 -0
- deny_sh-0.0.1/pyproject.toml +19 -0
- deny_sh-0.0.1/setup.cfg +4 -0
deny_sh-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: deny-sh
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Deniable encryption. Your ciphertext, their message.
|
|
5
|
+
Author-email: "deny.sh" <hello@deny.sh>
|
|
6
|
+
License: AGPL-3.0-or-later
|
|
7
|
+
Project-URL: Homepage, https://deny.sh
|
|
8
|
+
Project-URL: Repository, https://github.com/deny-sh-crypto/deny-sh
|
|
9
|
+
Keywords: encryption,deniable,crypto,aes,security,privacy
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Topic :: Security :: Cryptography
|
|
12
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# deny-sh
|
|
17
|
+
|
|
18
|
+
Deniable encryption. Your ciphertext, their message.
|
|
19
|
+
|
|
20
|
+
Coming soon at [deny.sh](https://deny.sh).
|
deny_sh-0.0.1/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: deny-sh
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Deniable encryption. Your ciphertext, their message.
|
|
5
|
+
Author-email: "deny.sh" <hello@deny.sh>
|
|
6
|
+
License: AGPL-3.0-or-later
|
|
7
|
+
Project-URL: Homepage, https://deny.sh
|
|
8
|
+
Project-URL: Repository, https://github.com/deny-sh-crypto/deny-sh
|
|
9
|
+
Keywords: encryption,deniable,crypto,aes,security,privacy
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Topic :: Security :: Cryptography
|
|
12
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# deny-sh
|
|
17
|
+
|
|
18
|
+
Deniable encryption. Your ciphertext, their message.
|
|
19
|
+
|
|
20
|
+
Coming soon at [deny.sh](https://deny.sh).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
deny_sh
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "deny-sh"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Deniable encryption. Your ciphertext, their message."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "AGPL-3.0-or-later"}
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
authors = [{name = "deny.sh", email = "hello@deny.sh"}]
|
|
13
|
+
urls = {Homepage = "https://deny.sh", Repository = "https://github.com/deny-sh-crypto/deny-sh"}
|
|
14
|
+
keywords = ["encryption", "deniable", "crypto", "aes", "security", "privacy"]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Topic :: Security :: Cryptography",
|
|
18
|
+
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
|
19
|
+
]
|
deny_sh-0.0.1/setup.cfg
ADDED