@kaluarunsi/obi-linux-x64 0.2.1 → 0.2.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaluarunsi/obi-linux-x64",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Linux x64 binary package for Obi CLI",
5
5
  "license": "UNLICENSED",
6
6
  "publishConfig": {
@@ -0,0 +1,139 @@
1
+ Metadata-Version: 2.4
2
+ Name: cryptography
3
+ Version: 46.0.5
4
+ Classifier: Development Status :: 5 - Production/Stable
5
+ Classifier: Intended Audience :: Developers
6
+ Classifier: Natural Language :: English
7
+ Classifier: Operating System :: MacOS :: MacOS X
8
+ Classifier: Operating System :: POSIX
9
+ Classifier: Operating System :: POSIX :: BSD
10
+ Classifier: Operating System :: POSIX :: Linux
11
+ Classifier: Operating System :: Microsoft :: Windows
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3 :: Only
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
22
+ Classifier: Programming Language :: Python :: Implementation :: CPython
23
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
24
+ Classifier: Programming Language :: Python :: Free Threading :: 3 - Stable
25
+ Classifier: Topic :: Security :: Cryptography
26
+ Requires-Dist: cffi>=1.14 ; python_full_version == '3.8.*' and platform_python_implementation != 'PyPy'
27
+ Requires-Dist: cffi>=2.0.0 ; python_full_version >= '3.9' and platform_python_implementation != 'PyPy'
28
+ Requires-Dist: typing-extensions>=4.13.2 ; python_full_version < '3.11'
29
+ Requires-Dist: bcrypt>=3.1.5 ; extra == 'ssh'
30
+ Requires-Dist: nox[uv]>=2024.4.15 ; extra == 'nox'
31
+ Requires-Dist: cryptography-vectors==46.0.5 ; extra == 'test'
32
+ Requires-Dist: pytest>=7.4.0 ; extra == 'test'
33
+ Requires-Dist: pytest-benchmark>=4.0 ; extra == 'test'
34
+ Requires-Dist: pytest-cov>=2.10.1 ; extra == 'test'
35
+ Requires-Dist: pytest-xdist>=3.5.0 ; extra == 'test'
36
+ Requires-Dist: pretend>=0.7 ; extra == 'test'
37
+ Requires-Dist: certifi>=2024 ; extra == 'test'
38
+ Requires-Dist: pytest-randomly ; extra == 'test-randomorder'
39
+ Requires-Dist: sphinx>=5.3.0 ; extra == 'docs'
40
+ Requires-Dist: sphinx-rtd-theme>=3.0.0 ; extra == 'docs'
41
+ Requires-Dist: sphinx-inline-tabs ; extra == 'docs'
42
+ Requires-Dist: pyenchant>=3 ; extra == 'docstest'
43
+ Requires-Dist: readme-renderer>=30.0 ; extra == 'docstest'
44
+ Requires-Dist: sphinxcontrib-spelling>=7.3.1 ; extra == 'docstest'
45
+ Requires-Dist: build>=1.0.0 ; extra == 'sdist'
46
+ Requires-Dist: ruff>=0.11.11 ; extra == 'pep8test'
47
+ Requires-Dist: mypy>=1.14 ; extra == 'pep8test'
48
+ Requires-Dist: check-sdist ; extra == 'pep8test'
49
+ Requires-Dist: click>=8.0.1 ; extra == 'pep8test'
50
+ Provides-Extra: ssh
51
+ Provides-Extra: nox
52
+ Provides-Extra: test
53
+ Provides-Extra: test-randomorder
54
+ Provides-Extra: docs
55
+ Provides-Extra: docstest
56
+ Provides-Extra: sdist
57
+ Provides-Extra: pep8test
58
+ License-File: LICENSE
59
+ License-File: LICENSE.APACHE
60
+ License-File: LICENSE.BSD
61
+ Summary: cryptography is a package which provides cryptographic recipes and primitives to Python developers.
62
+ Author-email: The Python Cryptographic Authority and individual contributors <cryptography-dev@python.org>
63
+ License-Expression: Apache-2.0 OR BSD-3-Clause
64
+ Requires-Python: >=3.8, !=3.9.0, !=3.9.1
65
+ Description-Content-Type: text/x-rst; charset=UTF-8
66
+ Project-URL: homepage, https://github.com/pyca/cryptography
67
+ Project-URL: documentation, https://cryptography.io/
68
+ Project-URL: source, https://github.com/pyca/cryptography/
69
+ Project-URL: issues, https://github.com/pyca/cryptography/issues
70
+ Project-URL: changelog, https://cryptography.io/en/latest/changelog/
71
+
72
+ pyca/cryptography
73
+ =================
74
+
75
+ .. image:: https://img.shields.io/pypi/v/cryptography.svg
76
+ :target: https://pypi.org/project/cryptography/
77
+ :alt: Latest Version
78
+
79
+ .. image:: https://readthedocs.org/projects/cryptography/badge/?version=latest
80
+ :target: https://cryptography.io
81
+ :alt: Latest Docs
82
+
83
+ .. image:: https://github.com/pyca/cryptography/actions/workflows/ci.yml/badge.svg
84
+ :target: https://github.com/pyca/cryptography/actions/workflows/ci.yml?query=branch%3Amain
85
+
86
+ ``cryptography`` is a package which provides cryptographic recipes and
87
+ primitives to Python developers. Our goal is for it to be your "cryptographic
88
+ standard library". It supports Python 3.8+ and PyPy3 7.3.11+.
89
+
90
+ ``cryptography`` includes both high level recipes and low level interfaces to
91
+ common cryptographic algorithms such as symmetric ciphers, message digests, and
92
+ key derivation functions. For example, to encrypt something with
93
+ ``cryptography``'s high level symmetric encryption recipe:
94
+
95
+ .. code-block:: pycon
96
+
97
+ >>> from cryptography.fernet import Fernet
98
+ >>> # Put this somewhere safe!
99
+ >>> key = Fernet.generate_key()
100
+ >>> f = Fernet(key)
101
+ >>> token = f.encrypt(b"A really secret message. Not for prying eyes.")
102
+ >>> token
103
+ b'...'
104
+ >>> f.decrypt(token)
105
+ b'A really secret message. Not for prying eyes.'
106
+
107
+ You can find more information in the `documentation`_.
108
+
109
+ You can install ``cryptography`` with:
110
+
111
+ .. code-block:: console
112
+
113
+ $ pip install cryptography
114
+
115
+ For full details see `the installation documentation`_.
116
+
117
+ Discussion
118
+ ~~~~~~~~~~
119
+
120
+ If you run into bugs, you can file them in our `issue tracker`_.
121
+
122
+ We maintain a `cryptography-dev`_ mailing list for development discussion.
123
+
124
+ You can also join ``#pyca`` on ``irc.libera.chat`` to ask questions or get
125
+ involved.
126
+
127
+ Security
128
+ ~~~~~~~~
129
+
130
+ Need to report a security issue? Please consult our `security reporting`_
131
+ documentation.
132
+
133
+
134
+ .. _`documentation`: https://cryptography.io/
135
+ .. _`the installation documentation`: https://cryptography.io/en/latest/installation/
136
+ .. _`issue tracker`: https://github.com/pyca/cryptography/issues
137
+ .. _`cryptography-dev`: https://mail.python.org/mailman/listinfo/cryptography-dev
138
+ .. _`security reporting`: https://cryptography.io/en/latest/security/
139
+
@@ -0,0 +1,180 @@
1
+ cryptography-46.0.5.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
2
+ cryptography-46.0.5.dist-info/METADATA,sha256=aOYB9_B-Ccske76ncMz-w9c_VnzYihv_7kxZlt2i2WQ,5748
3
+ cryptography-46.0.5.dist-info/RECORD,,
4
+ cryptography-46.0.5.dist-info/WHEEL,sha256=jkxrJemT4jZpYSr-u9xPalWqoow8benNmiXfjKXLlJw,108
5
+ cryptography-46.0.5.dist-info/licenses/LICENSE,sha256=Pgx8CRqUi4JTO6mP18u0BDLW8amsv4X1ki0vmak65rs,197
6
+ cryptography-46.0.5.dist-info/licenses/LICENSE.APACHE,sha256=qsc7MUj20dcRHbyjIJn2jSbGRMaBOuHk8F9leaomY_4,11360
7
+ cryptography-46.0.5.dist-info/licenses/LICENSE.BSD,sha256=YCxMdILeZHndLpeTzaJ15eY9dz2s0eymiSMqtwCPtPs,1532
8
+ cryptography/__about__.py,sha256=GWg4NAxg4vsSKUwmDy1HjUeAOhqTA46wIhiY6i03NSU,445
9
+ cryptography/__init__.py,sha256=mthuUrTd4FROCpUYrTIqhjz6s6T9djAZrV7nZ1oMm2o,364
10
+ cryptography/__pycache__/__about__.cpython-312.pyc,,
11
+ cryptography/__pycache__/__init__.cpython-312.pyc,,
12
+ cryptography/__pycache__/exceptions.cpython-312.pyc,,
13
+ cryptography/__pycache__/fernet.cpython-312.pyc,,
14
+ cryptography/__pycache__/utils.cpython-312.pyc,,
15
+ cryptography/exceptions.py,sha256=835EWILc2fwxw-gyFMriciC2SqhViETB10LBSytnDIc,1087
16
+ cryptography/fernet.py,sha256=3Cvxkh0KJSbX8HbnCHu4wfCW7U0GgfUA3v_qQ8a8iWc,6963
17
+ cryptography/hazmat/__init__.py,sha256=5IwrLWrVp0AjEr_4FdWG_V057NSJGY_W4egNNsuct0g,455
18
+ cryptography/hazmat/__pycache__/__init__.cpython-312.pyc,,
19
+ cryptography/hazmat/__pycache__/_oid.cpython-312.pyc,,
20
+ cryptography/hazmat/_oid.py,sha256=p8ThjwJB56Ci_rAIrjyJ1f8VjgD6e39es2dh8JIUBOw,17240
21
+ cryptography/hazmat/asn1/__init__.py,sha256=hS_EWx3wVvZzfbCcNV8hzcDnyMM8H-BhIoS1TipUosk,293
22
+ cryptography/hazmat/asn1/__pycache__/__init__.cpython-312.pyc,,
23
+ cryptography/hazmat/asn1/__pycache__/asn1.cpython-312.pyc,,
24
+ cryptography/hazmat/asn1/asn1.py,sha256=eMEThEXa19LQjcyVofgHsW6tsZnjp3ddH7bWkkcxfLM,3860
25
+ cryptography/hazmat/backends/__init__.py,sha256=O5jvKFQdZnXhKeqJ-HtulaEL9Ni7mr1mDzZY5kHlYhI,361
26
+ cryptography/hazmat/backends/__pycache__/__init__.cpython-312.pyc,,
27
+ cryptography/hazmat/backends/openssl/__init__.py,sha256=p3jmJfnCag9iE5sdMrN6VvVEu55u46xaS_IjoI0SrmA,305
28
+ cryptography/hazmat/backends/openssl/__pycache__/__init__.cpython-312.pyc,,
29
+ cryptography/hazmat/backends/openssl/__pycache__/backend.cpython-312.pyc,,
30
+ cryptography/hazmat/backends/openssl/backend.py,sha256=tV5AxBoFJ2GfA0DMWSY-0TxQJrpQoexzI9R4Kybb--4,10215
31
+ cryptography/hazmat/bindings/__init__.py,sha256=s9oKCQ2ycFdXoERdS1imafueSkBsL9kvbyfghaauZ9Y,180
32
+ cryptography/hazmat/bindings/__pycache__/__init__.cpython-312.pyc,,
33
+ cryptography/hazmat/bindings/_rust.abi3.so,sha256=vnU--g2fSh9-jyB5m6kxpbaqNoiK-fQLIR088ShrjOs,12807728
34
+ cryptography/hazmat/bindings/_rust/__init__.pyi,sha256=KhqLhXFPArPzzJ7DYO9Fl8FoXB_BagAd_r4Dm_Ze9Xo,1257
35
+ cryptography/hazmat/bindings/_rust/_openssl.pyi,sha256=mpNJLuYLbCVrd5i33FBTmWwL_55Dw7JPkSLlSX9Q7oI,230
36
+ cryptography/hazmat/bindings/_rust/asn1.pyi,sha256=BrGjC8J6nwuS-r3EVcdXJB8ndotfY9mbQYOfpbPG0HA,354
37
+ cryptography/hazmat/bindings/_rust/declarative_asn1.pyi,sha256=2ECFmYue1EPkHEE2Bm7aLwkjB0mSUTpr23v9MN4pri4,892
38
+ cryptography/hazmat/bindings/_rust/exceptions.pyi,sha256=exXr2xw_0pB1kk93cYbM3MohbzoUkjOms1ZMUi0uQZE,640
39
+ cryptography/hazmat/bindings/_rust/ocsp.pyi,sha256=VPVWuKHI9EMs09ZLRYAGvR0Iz0mCMmEzXAkgJHovpoM,4020
40
+ cryptography/hazmat/bindings/_rust/openssl/__init__.pyi,sha256=iOAMDyHoNwwCSZfZzuXDr64g4GpGUeDgEN-LjXqdrBM,1522
41
+ cryptography/hazmat/bindings/_rust/openssl/aead.pyi,sha256=4Nddw6-ynzIB3w2W86WvkGKTLlTDk_6F5l54RHCuy3E,2688
42
+ cryptography/hazmat/bindings/_rust/openssl/ciphers.pyi,sha256=LhPzHWSXJq4grAJXn6zSvSSdV-aYIIscHDwIPlJGGPs,1315
43
+ cryptography/hazmat/bindings/_rust/openssl/cmac.pyi,sha256=nPH0X57RYpsAkRowVpjQiHE566ThUTx7YXrsadmrmHk,564
44
+ cryptography/hazmat/bindings/_rust/openssl/dh.pyi,sha256=Z3TC-G04-THtSdAOPLM1h2G7ml5bda1ElZUcn5wpuhk,1564
45
+ cryptography/hazmat/bindings/_rust/openssl/dsa.pyi,sha256=qBtkgj2albt2qFcnZ9UDrhzoNhCVO7HTby5VSf1EXMI,1299
46
+ cryptography/hazmat/bindings/_rust/openssl/ec.pyi,sha256=zJy0pRa5n-_p2dm45PxECB_-B6SVZyNKfjxFDpPqT38,1691
47
+ cryptography/hazmat/bindings/_rust/openssl/ed25519.pyi,sha256=VXfXd5G6hUivg399R1DYdmW3eTb0EebzDTqjRC2gaRw,532
48
+ cryptography/hazmat/bindings/_rust/openssl/ed448.pyi,sha256=Yx49lqdnjsD7bxiDV1kcaMrDktug5evi5a6zerMiy2s,514
49
+ cryptography/hazmat/bindings/_rust/openssl/hashes.pyi,sha256=OWZvBx7xfo_HJl41Nc--DugVyCVPIprZ3HlOPTSWH9g,984
50
+ cryptography/hazmat/bindings/_rust/openssl/hmac.pyi,sha256=BXZn7NDjL3JAbYW0SQ8pg1iyC5DbQXVhUAiwsi8DFR8,702
51
+ cryptography/hazmat/bindings/_rust/openssl/kdf.pyi,sha256=xXfFBb9QehHfDtEaxV_65Z0YK7NquOVIChpTLkgAs_k,2029
52
+ cryptography/hazmat/bindings/_rust/openssl/keys.pyi,sha256=teIt8M6ZEMJrn4s3W0UnW0DZ-30Jd68WnSsKKG124l0,912
53
+ cryptography/hazmat/bindings/_rust/openssl/poly1305.pyi,sha256=_SW9NtQ5FDlAbdclFtWpT4lGmxKIKHpN-4j8J2BzYfQ,585
54
+ cryptography/hazmat/bindings/_rust/openssl/rsa.pyi,sha256=2OQCNSXkxgc-3uw1xiCCloIQTV6p9_kK79Yu0rhZgPc,1364
55
+ cryptography/hazmat/bindings/_rust/openssl/x25519.pyi,sha256=ewn4GpQyb7zPwE-ni7GtyQgMC0A1mLuqYsSyqv6nI_s,523
56
+ cryptography/hazmat/bindings/_rust/openssl/x448.pyi,sha256=juTZTmli8jO_5Vcufg-vHvx_tCyezmSLIh_9PU3TczI,505
57
+ cryptography/hazmat/bindings/_rust/pkcs12.pyi,sha256=vEEd5wDiZvb8ZGFaziLCaWLzAwoG_tvPUxLQw5_uOl8,1605
58
+ cryptography/hazmat/bindings/_rust/pkcs7.pyi,sha256=txGBJijqZshEcqra6byPNbnisIdlxzOSIHP2hl9arPs,1601
59
+ cryptography/hazmat/bindings/_rust/test_support.pyi,sha256=PPhld-WkO743iXFPebeG0LtgK0aTzGdjcIsay1Gm5GE,757
60
+ cryptography/hazmat/bindings/_rust/x509.pyi,sha256=n9X0IQ6ICbdIi-ExdCFZoBgeY6njm3QOVAVZwDQdnbk,9784
61
+ cryptography/hazmat/bindings/openssl/__init__.py,sha256=s9oKCQ2ycFdXoERdS1imafueSkBsL9kvbyfghaauZ9Y,180
62
+ cryptography/hazmat/bindings/openssl/__pycache__/__init__.cpython-312.pyc,,
63
+ cryptography/hazmat/bindings/openssl/__pycache__/_conditional.cpython-312.pyc,,
64
+ cryptography/hazmat/bindings/openssl/__pycache__/binding.cpython-312.pyc,,
65
+ cryptography/hazmat/bindings/openssl/_conditional.py,sha256=DMOpA_XN4l70zTc5_J9DpwlbQeUBRTWpfIJ4yRIn1-U,5791
66
+ cryptography/hazmat/bindings/openssl/binding.py,sha256=x8eocEmukO4cm7cHqfVmOoYY7CCXdoF1v1WhZQt9neo,4610
67
+ cryptography/hazmat/decrepit/__init__.py,sha256=wHCbWfaefa-fk6THSw9th9fJUsStJo7245wfFBqmduA,216
68
+ cryptography/hazmat/decrepit/__pycache__/__init__.cpython-312.pyc,,
69
+ cryptography/hazmat/decrepit/ciphers/__init__.py,sha256=wHCbWfaefa-fk6THSw9th9fJUsStJo7245wfFBqmduA,216
70
+ cryptography/hazmat/decrepit/ciphers/__pycache__/__init__.cpython-312.pyc,,
71
+ cryptography/hazmat/decrepit/ciphers/__pycache__/algorithms.cpython-312.pyc,,
72
+ cryptography/hazmat/decrepit/ciphers/algorithms.py,sha256=YrKgHS4MfwWaMmPBYRymRRlC0phwWp9ycICFezeJPGk,2595
73
+ cryptography/hazmat/primitives/__init__.py,sha256=s9oKCQ2ycFdXoERdS1imafueSkBsL9kvbyfghaauZ9Y,180
74
+ cryptography/hazmat/primitives/__pycache__/__init__.cpython-312.pyc,,
75
+ cryptography/hazmat/primitives/__pycache__/_asymmetric.cpython-312.pyc,,
76
+ cryptography/hazmat/primitives/__pycache__/_cipheralgorithm.cpython-312.pyc,,
77
+ cryptography/hazmat/primitives/__pycache__/_serialization.cpython-312.pyc,,
78
+ cryptography/hazmat/primitives/__pycache__/cmac.cpython-312.pyc,,
79
+ cryptography/hazmat/primitives/__pycache__/constant_time.cpython-312.pyc,,
80
+ cryptography/hazmat/primitives/__pycache__/hashes.cpython-312.pyc,,
81
+ cryptography/hazmat/primitives/__pycache__/hmac.cpython-312.pyc,,
82
+ cryptography/hazmat/primitives/__pycache__/keywrap.cpython-312.pyc,,
83
+ cryptography/hazmat/primitives/__pycache__/padding.cpython-312.pyc,,
84
+ cryptography/hazmat/primitives/__pycache__/poly1305.cpython-312.pyc,,
85
+ cryptography/hazmat/primitives/_asymmetric.py,sha256=RhgcouUB6HTiFDBrR1LxqkMjpUxIiNvQ1r_zJjRG6qQ,532
86
+ cryptography/hazmat/primitives/_cipheralgorithm.py,sha256=Eh3i7lwedHfi0eLSsH93PZxQKzY9I6lkK67vL4V5tOc,1522
87
+ cryptography/hazmat/primitives/_serialization.py,sha256=chgPCSF2jxI2Cr5gB-qbWXOvOfupBh4CARS0KAhv9AM,5123
88
+ cryptography/hazmat/primitives/asymmetric/__init__.py,sha256=s9oKCQ2ycFdXoERdS1imafueSkBsL9kvbyfghaauZ9Y,180
89
+ cryptography/hazmat/primitives/asymmetric/__pycache__/__init__.cpython-312.pyc,,
90
+ cryptography/hazmat/primitives/asymmetric/__pycache__/dh.cpython-312.pyc,,
91
+ cryptography/hazmat/primitives/asymmetric/__pycache__/dsa.cpython-312.pyc,,
92
+ cryptography/hazmat/primitives/asymmetric/__pycache__/ec.cpython-312.pyc,,
93
+ cryptography/hazmat/primitives/asymmetric/__pycache__/ed25519.cpython-312.pyc,,
94
+ cryptography/hazmat/primitives/asymmetric/__pycache__/ed448.cpython-312.pyc,,
95
+ cryptography/hazmat/primitives/asymmetric/__pycache__/padding.cpython-312.pyc,,
96
+ cryptography/hazmat/primitives/asymmetric/__pycache__/rsa.cpython-312.pyc,,
97
+ cryptography/hazmat/primitives/asymmetric/__pycache__/types.cpython-312.pyc,,
98
+ cryptography/hazmat/primitives/asymmetric/__pycache__/utils.cpython-312.pyc,,
99
+ cryptography/hazmat/primitives/asymmetric/__pycache__/x25519.cpython-312.pyc,,
100
+ cryptography/hazmat/primitives/asymmetric/__pycache__/x448.cpython-312.pyc,,
101
+ cryptography/hazmat/primitives/asymmetric/dh.py,sha256=0v_vEFFz5pQ1QG-FkWDyvgv7IfuVZSH5Q6LyFI5A8rg,3645
102
+ cryptography/hazmat/primitives/asymmetric/dsa.py,sha256=Ld_bbbqQFz12dObHxIkzEQzX0SWWP41RLSWkYSaKhqE,4213
103
+ cryptography/hazmat/primitives/asymmetric/ec.py,sha256=dj0ZR_jTVI1wojjipjbXNVccPSIRObWxSZcTGQKGbHc,13437
104
+ cryptography/hazmat/primitives/asymmetric/ed25519.py,sha256=jZW5cs472wXXV3eB0sE1b8w64gdazwwU0_MT5UOTiXs,3700
105
+ cryptography/hazmat/primitives/asymmetric/ed448.py,sha256=yAetgn2f2JYf0BO8MapGzXeThsvSMG5LmUCrxVOidAA,3729
106
+ cryptography/hazmat/primitives/asymmetric/padding.py,sha256=vQ6l6gOg9HqcbOsvHrSiJRVLdEj9L4m4HkRGYziTyFA,2854
107
+ cryptography/hazmat/primitives/asymmetric/rsa.py,sha256=ZnKOo2f34MCCOupC03Y1uR-_jiSG5IrelHEmxaME3D4,8303
108
+ cryptography/hazmat/primitives/asymmetric/types.py,sha256=LnsOJym-wmPUJ7Knu_7bCNU3kIiELCd6krOaW_JU08I,2996
109
+ cryptography/hazmat/primitives/asymmetric/utils.py,sha256=DPTs6T4F-UhwzFQTh-1fSEpQzazH2jf2xpIro3ItF4o,790
110
+ cryptography/hazmat/primitives/asymmetric/x25519.py,sha256=_4nQeZ3yJ3Lg0RpXnaqA-1yt6vbx1F-wzLcaZHwSpeE,3613
111
+ cryptography/hazmat/primitives/asymmetric/x448.py,sha256=WKBLtuVfJqiBRro654fGaQAlvsKbqbNkK7c4A_ZCdV0,3642
112
+ cryptography/hazmat/primitives/ciphers/__init__.py,sha256=eyEXmjk6_CZXaOPYDr7vAYGXr29QvzgWL2-4CSolLFs,680
113
+ cryptography/hazmat/primitives/ciphers/__pycache__/__init__.cpython-312.pyc,,
114
+ cryptography/hazmat/primitives/ciphers/__pycache__/aead.cpython-312.pyc,,
115
+ cryptography/hazmat/primitives/ciphers/__pycache__/algorithms.cpython-312.pyc,,
116
+ cryptography/hazmat/primitives/ciphers/__pycache__/base.cpython-312.pyc,,
117
+ cryptography/hazmat/primitives/ciphers/__pycache__/modes.cpython-312.pyc,,
118
+ cryptography/hazmat/primitives/ciphers/aead.py,sha256=Fzlyx7w8KYQakzDp1zWgJnIr62zgZrgVh1u2h4exB54,634
119
+ cryptography/hazmat/primitives/ciphers/algorithms.py,sha256=Q7ZJwcsx83Mgxv5y7r6CyJKSdsOwC-my-5A67-ma2vw,3407
120
+ cryptography/hazmat/primitives/ciphers/base.py,sha256=aBC7HHBBoixebmparVr0UlODs3VD0A7B6oz_AaRjDv8,4253
121
+ cryptography/hazmat/primitives/ciphers/modes.py,sha256=20stpwhDtbAvpH0SMf9EDHIciwmTF-JMBUOZ9bU8WiQ,8318
122
+ cryptography/hazmat/primitives/cmac.py,sha256=sz_s6H_cYnOvx-VNWdIKhRhe3Ymp8z8J0D3CBqOX3gg,338
123
+ cryptography/hazmat/primitives/constant_time.py,sha256=xdunWT0nf8OvKdcqUhhlFKayGp4_PgVJRU2W1wLSr_A,422
124
+ cryptography/hazmat/primitives/hashes.py,sha256=M8BrlKB3U6DEtHvWTV5VRjpteHv1kS3Zxm_Bsk04cr8,5184
125
+ cryptography/hazmat/primitives/hmac.py,sha256=RpB3z9z5skirCQrm7zQbtnp9pLMnAjrlTUvKqF5aDDc,423
126
+ cryptography/hazmat/primitives/kdf/__init__.py,sha256=4XibZnrYq4hh5xBjWiIXzaYW6FKx8hPbVaa_cB9zS64,750
127
+ cryptography/hazmat/primitives/kdf/__pycache__/__init__.cpython-312.pyc,,
128
+ cryptography/hazmat/primitives/kdf/__pycache__/argon2.cpython-312.pyc,,
129
+ cryptography/hazmat/primitives/kdf/__pycache__/concatkdf.cpython-312.pyc,,
130
+ cryptography/hazmat/primitives/kdf/__pycache__/hkdf.cpython-312.pyc,,
131
+ cryptography/hazmat/primitives/kdf/__pycache__/kbkdf.cpython-312.pyc,,
132
+ cryptography/hazmat/primitives/kdf/__pycache__/pbkdf2.cpython-312.pyc,,
133
+ cryptography/hazmat/primitives/kdf/__pycache__/scrypt.cpython-312.pyc,,
134
+ cryptography/hazmat/primitives/kdf/__pycache__/x963kdf.cpython-312.pyc,,
135
+ cryptography/hazmat/primitives/kdf/argon2.py,sha256=UFDNXG0v-rw3DqAQTB1UQAsQC2M5Ejg0k_6OCyhLKus,460
136
+ cryptography/hazmat/primitives/kdf/concatkdf.py,sha256=Ua8KoLXXnzgsrAUmHpyKymaPt8aPRP0EHEaBz7QCQ9I,3737
137
+ cryptography/hazmat/primitives/kdf/hkdf.py,sha256=M0lAEfRoc4kpp4-nwDj9yB-vNZukIOYEQrUlWsBNn9o,543
138
+ cryptography/hazmat/primitives/kdf/kbkdf.py,sha256=oZepvo4evhKkkJQWRDwaPoIbyTaFmDc5NPimxg6lfKg,9165
139
+ cryptography/hazmat/primitives/kdf/pbkdf2.py,sha256=1WIwhELR0w8ztTpTu8BrFiYWmK3hUfJq08I79TxwieE,1957
140
+ cryptography/hazmat/primitives/kdf/scrypt.py,sha256=XyWUdUUmhuI9V6TqAPOvujCSMGv1XQdg0a21IWCmO-U,590
141
+ cryptography/hazmat/primitives/kdf/x963kdf.py,sha256=zLTcF665QFvXX2f8TS7fmBZTteXpFjKahzfjjQcCJyw,1999
142
+ cryptography/hazmat/primitives/keywrap.py,sha256=XV4Pj2fqSeD-RqZVvY2cA3j5_7RwJSFygYuLfk2ujCo,5650
143
+ cryptography/hazmat/primitives/padding.py,sha256=QT-U-NvV2eQGO1wVPbDiNGNSc9keRDS-ig5cQOrLz0E,1865
144
+ cryptography/hazmat/primitives/poly1305.py,sha256=P5EPQV-RB_FJPahpg01u0Ts4S_PnAmsroxIGXbGeRRo,355
145
+ cryptography/hazmat/primitives/serialization/__init__.py,sha256=Q7uTgDlt7n3WfsMT6jYwutC6DIg_7SEeoAm1GHZ5B5E,1705
146
+ cryptography/hazmat/primitives/serialization/__pycache__/__init__.cpython-312.pyc,,
147
+ cryptography/hazmat/primitives/serialization/__pycache__/base.cpython-312.pyc,,
148
+ cryptography/hazmat/primitives/serialization/__pycache__/pkcs12.cpython-312.pyc,,
149
+ cryptography/hazmat/primitives/serialization/__pycache__/pkcs7.cpython-312.pyc,,
150
+ cryptography/hazmat/primitives/serialization/__pycache__/ssh.cpython-312.pyc,,
151
+ cryptography/hazmat/primitives/serialization/base.py,sha256=ikq5MJIwp_oUnjiaBco_PmQwOTYuGi-XkYUYHKy8Vo0,615
152
+ cryptography/hazmat/primitives/serialization/pkcs12.py,sha256=mS9cFNG4afzvseoc5e1MWoY2VskfL8N8Y_OFjl67luY,5104
153
+ cryptography/hazmat/primitives/serialization/pkcs7.py,sha256=5OR_Tkysxaprn4FegvJIfbep9rJ9wok6FLWvWwQ5-Mg,13943
154
+ cryptography/hazmat/primitives/serialization/ssh.py,sha256=hPV5obFznz0QhFfXFPOeQ8y6MsurA0xVMQiLnLESEs8,53700
155
+ cryptography/hazmat/primitives/twofactor/__init__.py,sha256=tmMZGB-g4IU1r7lIFqASU019zr0uPp_wEBYcwdDCKCA,258
156
+ cryptography/hazmat/primitives/twofactor/__pycache__/__init__.cpython-312.pyc,,
157
+ cryptography/hazmat/primitives/twofactor/__pycache__/hotp.cpython-312.pyc,,
158
+ cryptography/hazmat/primitives/twofactor/__pycache__/totp.cpython-312.pyc,,
159
+ cryptography/hazmat/primitives/twofactor/hotp.py,sha256=ivZo5BrcCGWLsqql4nZV0XXCjyGPi_iHfDFltGlOJwk,3256
160
+ cryptography/hazmat/primitives/twofactor/totp.py,sha256=m5LPpRL00kp4zY8gTjr55Hfz9aMlPS53kHmVkSQCmdY,1652
161
+ cryptography/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
+ cryptography/utils.py,sha256=nFHkPQZycOQGeBtBRkWSA4WjOHFo7pwummQt-PPSkZc,4349
163
+ cryptography/x509/__init__.py,sha256=xloN0swseNx-m2WFZmCA17gOoxQWqeU82UVjEdJBePQ,8257
164
+ cryptography/x509/__pycache__/__init__.cpython-312.pyc,,
165
+ cryptography/x509/__pycache__/base.cpython-312.pyc,,
166
+ cryptography/x509/__pycache__/certificate_transparency.cpython-312.pyc,,
167
+ cryptography/x509/__pycache__/extensions.cpython-312.pyc,,
168
+ cryptography/x509/__pycache__/general_name.cpython-312.pyc,,
169
+ cryptography/x509/__pycache__/name.cpython-312.pyc,,
170
+ cryptography/x509/__pycache__/ocsp.cpython-312.pyc,,
171
+ cryptography/x509/__pycache__/oid.cpython-312.pyc,,
172
+ cryptography/x509/__pycache__/verification.cpython-312.pyc,,
173
+ cryptography/x509/base.py,sha256=OrmTw3y8B6AE_nGXQPN8x9kq-d7rDWeH13gCq6T6D6U,27997
174
+ cryptography/x509/certificate_transparency.py,sha256=JqoOIDhlwInrYMFW6IFn77WJ0viF-PB_rlZV3vs9MYc,797
175
+ cryptography/x509/extensions.py,sha256=QxYrqR6SF1qzR9ZraP8wDiIczlEVlAFuwDRVcltB6Tk,77724
176
+ cryptography/x509/general_name.py,sha256=sP_rV11Qlpsk4x3XXGJY_Mv0Q_s9dtjeLckHsjpLQoQ,7836
177
+ cryptography/x509/name.py,sha256=ty0_xf0LnHwZAdEf-d8FLO1K4hGqx_7DsD3CHwoLJiY,15101
178
+ cryptography/x509/ocsp.py,sha256=Yey6NdFV1MPjop24Mj_VenjEpg3kUaMopSWOK0AbeBs,12699
179
+ cryptography/x509/oid.py,sha256=BUzgXXGVWilkBkdKPTm9R4qElE9gAGHgdYPMZAp7PJo,931
180
+ cryptography/x509/verification.py,sha256=gR2C2c-XZQtblZhT5T5vjSKOtCb74ef2alPVmEcwFlM,958
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.9.4)
3
+ Root-Is-Purelib: false
4
+ Tag: cp311-abi3-manylinux_2_34_x86_64
5
+
@@ -0,0 +1,3 @@
1
+ This software is made available under the terms of *either* of the licenses
2
+ found in LICENSE.APACHE or LICENSE.BSD. Contributions to cryptography are made
3
+ under the terms of *both* these licenses.
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ https://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ https://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,27 @@
1
+ Copyright (c) Individual contributors.
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+
7
+ 1. Redistributions of source code must retain the above copyright notice,
8
+ this list of conditions and the following disclaimer.
9
+
10
+ 2. Redistributions in binary form must reproduce the above copyright
11
+ notice, this list of conditions and the following disclaimer in the
12
+ documentation and/or other materials provided with the distribution.
13
+
14
+ 3. Neither the name of PyCA Cryptography nor the names of its contributors
15
+ may be used to endorse or promote products derived from this software
16
+ without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
22
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,554 @@
1
+ Metadata-Version: 2.4
2
+ Name: keyring
3
+ Version: 25.7.0
4
+ Summary: Store and access your passwords safely.
5
+ Author-email: Kang Zhang <jobo.zh@gmail.com>
6
+ Maintainer-email: "Jason R. Coombs" <jaraco@jaraco.com>
7
+ License-Expression: MIT
8
+ Project-URL: Source, https://github.com/jaraco/keyring
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/x-rst
15
+ License-File: LICENSE
16
+ Requires-Dist: pywin32-ctypes>=0.2.0; sys_platform == "win32"
17
+ Requires-Dist: SecretStorage>=3.2; sys_platform == "linux"
18
+ Requires-Dist: jeepney>=0.4.2; sys_platform == "linux"
19
+ Requires-Dist: importlib_metadata>=4.11.4; python_version < "3.12"
20
+ Requires-Dist: jaraco.classes
21
+ Requires-Dist: jaraco.functools
22
+ Requires-Dist: jaraco.context
23
+ Provides-Extra: test
24
+ Requires-Dist: pytest!=8.1.*,>=6; extra == "test"
25
+ Requires-Dist: pyfakefs; extra == "test"
26
+ Provides-Extra: doc
27
+ Requires-Dist: sphinx>=3.5; extra == "doc"
28
+ Requires-Dist: jaraco.packaging>=9.3; extra == "doc"
29
+ Requires-Dist: rst.linker>=1.9; extra == "doc"
30
+ Requires-Dist: furo; extra == "doc"
31
+ Requires-Dist: sphinx-lint; extra == "doc"
32
+ Requires-Dist: jaraco.tidelift>=1.4; extra == "doc"
33
+ Provides-Extra: check
34
+ Requires-Dist: pytest-checkdocs>=2.4; extra == "check"
35
+ Requires-Dist: pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"
36
+ Provides-Extra: cover
37
+ Requires-Dist: pytest-cov; extra == "cover"
38
+ Provides-Extra: enabler
39
+ Requires-Dist: pytest-enabler>=3.4; extra == "enabler"
40
+ Provides-Extra: type
41
+ Requires-Dist: pytest-mypy>=1.0.1; extra == "type"
42
+ Requires-Dist: pygobject-stubs; extra == "type"
43
+ Requires-Dist: shtab; extra == "type"
44
+ Requires-Dist: types-pywin32; extra == "type"
45
+ Provides-Extra: completion
46
+ Requires-Dist: shtab>=1.1.0; extra == "completion"
47
+ Dynamic: license-file
48
+
49
+ .. image:: https://img.shields.io/pypi/v/keyring.svg
50
+ :target: https://pypi.org/project/keyring
51
+
52
+ .. image:: https://img.shields.io/pypi/pyversions/keyring.svg
53
+
54
+ .. image:: https://github.com/jaraco/keyring/actions/workflows/main.yml/badge.svg
55
+ :target: https://github.com/jaraco/keyring/actions?query=workflow%3A%22tests%22
56
+ :alt: tests
57
+
58
+ .. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json
59
+ :target: https://github.com/astral-sh/ruff
60
+ :alt: Ruff
61
+
62
+ .. image:: https://readthedocs.org/projects/keyring/badge/?version=latest
63
+ :target: https://keyring.readthedocs.io/en/latest/?badge=latest
64
+
65
+ .. image:: https://img.shields.io/badge/skeleton-2025-informational
66
+ :target: https://blog.jaraco.com/skeleton
67
+
68
+ .. image:: https://tidelift.com/badges/package/pypi/keyring
69
+ :target: https://tidelift.com/subscription/pkg/pypi-keyring?utm_source=pypi-keyring&utm_medium=readme
70
+
71
+ .. image:: https://badges.gitter.im/jaraco/keyring.svg
72
+ :alt: Join the chat at https://gitter.im/jaraco/keyring
73
+ :target: https://gitter.im/jaraco/keyring?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
74
+
75
+ The Python keyring library provides an easy way to access the
76
+ system keyring service from python. It can be used in any
77
+ application that needs safe password storage.
78
+
79
+ These recommended keyring backends are supported:
80
+
81
+ * macOS `Keychain
82
+ <https://en.wikipedia.org/wiki/Keychain_%28software%29>`_
83
+ * Freedesktop `Secret Service
84
+ <http://standards.freedesktop.org/secret-service/>`_ supports many DE including
85
+ GNOME (requires `secretstorage <https://pypi.python.org/pypi/secretstorage>`_)
86
+ * KDE4 & KDE5 `KWallet <https://en.wikipedia.org/wiki/KWallet>`_
87
+ (requires `dbus <https://pypi.python.org/pypi/dbus-python>`_)
88
+ * `Windows Credential Locker
89
+ <https://docs.microsoft.com/en-us/windows/uwp/security/credential-locker>`_
90
+
91
+ Other keyring implementations are available through `Third-Party Backends`_.
92
+
93
+ Installation - Linux
94
+ ====================
95
+
96
+ On Linux, the KWallet backend relies on dbus-python_, which does not always
97
+ install correctly when using pip (compilation is needed). For best results,
98
+ install dbus-python as a system package.
99
+
100
+ .. _dbus-python: https://gitlab.freedesktop.org/dbus/dbus-python
101
+
102
+ Compatibility - macOS
103
+ =====================
104
+
105
+ macOS keychain supports macOS 11 (Big Sur) and later requires Python 3.8.7
106
+ or later with the "universal2" binary. See
107
+ `#525 <https://github.com/jaraco/keyring/issues/525>`_ for details.
108
+
109
+ Using Keyring
110
+ =============
111
+
112
+ The basic usage of keyring is pretty simple: just call
113
+ ``keyring.set_password`` and ``keyring.get_password``::
114
+
115
+ >>> import keyring
116
+ >>> keyring.set_password("system", "username", "password")
117
+ >>> keyring.get_password("system", "username")
118
+ 'password'
119
+
120
+ Command-line Utility
121
+ --------------------
122
+
123
+ Keyring supplies a ``keyring`` command which is installed with the
124
+ package. After installing keyring in most environments, the
125
+ command should be available for setting, getting, and deleting
126
+ passwords. For more usage information, invoke with no arguments
127
+ or with ``--help`` as so::
128
+
129
+ $ keyring --help
130
+ $ keyring set system username
131
+ Password for 'username' in 'system':
132
+ $ keyring get system username
133
+ password
134
+
135
+ The command-line functionality is also exposed as an executable
136
+ package, suitable for invoking from Python like so::
137
+
138
+ $ python -m keyring --help
139
+ $ python -m keyring set system username
140
+ Password for 'username' in 'system':
141
+ $ python -m keyring get system username
142
+ password
143
+
144
+ Tab Completion
145
+ --------------
146
+
147
+ If installed via a package manager (apt, pacman, nix, homebrew, etc),
148
+ these shell completions may already have been distributed with the package
149
+ (no action required).
150
+
151
+ Keyring provides tab completion if the ``completion`` extra is installed::
152
+
153
+ $ pip install 'keyring[completion]'
154
+
155
+ Then, generate shell completions, something like::
156
+
157
+ $ keyring --print-completion bash | sudo tee /usr/share/bash-completion/completions/keyring
158
+ $ keyring --print-completion zsh | sudo tee /usr/share/zsh/site-functions/_keyring
159
+ $ keyring --print-completion tcsh | sudo tee /etc/profile.d/keyring.csh
160
+
161
+ **Note**: the path of `/usr/share` is mainly for GNU/Linux. For other OSs,
162
+ consider:
163
+
164
+ - macOS (Homebrew x86): /usr/local/share
165
+ - macOS (Homebrew ARM): /opt/homebrew/share
166
+ - Android (Termux): /data/data/com.termux/files/usr/share
167
+ - Windows (mingw64 of msys2): /mingw64/share
168
+ - ...
169
+
170
+ After installing the shell completions, enable them following your shell's
171
+ recommended instructions. e.g.:
172
+
173
+ - bash: install `bash-completion <https://github.com/scop/bash-completion>`_,
174
+ and ensure ``. /usr/share/bash-completion/bash_completion`` in ``~/.bashrc``.
175
+ - zsh: ensure ``autoload -Uz compinit && compinit`` appears in ``~/.zshrc``,
176
+ then ``grep -w keyring ~/.zcompdump`` to verify keyring appears, indicating
177
+ it was installed correctly.
178
+
179
+ Configuring
180
+ ===========
181
+
182
+ The python keyring lib contains implementations for several backends. The
183
+ library will attempt to
184
+ automatically choose the most suitable backend for the current
185
+ environment. Users may also specify the preferred keyring in a
186
+ config file or by calling the ``set_keyring()`` function.
187
+
188
+ Config file path
189
+ ----------------
190
+
191
+ The configuration is stored in a file named "keyringrc.cfg"
192
+ found in a platform-specific location. To determine
193
+ where the config file is stored, run ``keyring diagnose``.
194
+
195
+ Config file content
196
+ -------------------
197
+
198
+ To specify a keyring backend, set the **default-keyring** option to the
199
+ full path of the class for that backend, such as
200
+ ``keyring.backends.macOS.Keyring``.
201
+
202
+ If **keyring-path** is indicated, keyring will add that path to the Python
203
+ module search path before loading the backend.
204
+
205
+ For example, this config might be used to load the
206
+ ``SimpleKeyring`` from the ``simplekeyring`` module in
207
+ the ``./demo`` directory (not implemented)::
208
+
209
+ [backend]
210
+ default-keyring=simplekeyring.SimpleKeyring
211
+ keyring-path=demo
212
+
213
+ Third-Party Backends
214
+ ====================
215
+
216
+ In addition to the backends provided by the core keyring package for
217
+ the most common and secure use cases, there
218
+ are additional keyring backend implementations available for other
219
+ use cases. Simply install them to make them available:
220
+
221
+ - `keyrings.cryptfile <https://pypi.org/project/keyrings.cryptfile>`_
222
+ - Encrypted text file storage.
223
+ - `keyrings.alt <https://pypi.org/project/keyrings.alt>`_ - "alternate",
224
+ possibly-insecure backends, originally part of the core package, but
225
+ available for opt-in.
226
+ - `gsheet-keyring <https://pypi.org/project/gsheet-keyring>`_
227
+ - a backend that stores secrets in a Google Sheet. For use with
228
+ `ipython-secrets <https://pypi.org/project/ipython-secrets>`_.
229
+ - `bitwarden-keyring <https://pypi.org/project/bitwarden-keyring/>`_
230
+ - a backend that stores secrets in the `BitWarden <https://bitwarden.com/>`_
231
+ password manager.
232
+ - `onepassword-keyring <https://pypi.org/project/onepassword-keyring/>`_
233
+ - a backend that stores secrets in the `1Password <https://1password.com/>`_ password manager.
234
+ - `sagecipher <https://pypi.org/project/sagecipher>`_ - an encryption
235
+ backend which uses the ssh agent protocol's signature operation to
236
+ derive the cipher key.
237
+ - `keyrings.osx_keychain_keys <https://pypi.org/project/keyrings.osx-keychain-keys>`_
238
+ - OSX keychain key-management, for private, public, and symmetric keys.
239
+ - `keyring_pass.PasswordStoreBackend <https://github.com/nazarewk/keyring_pass>`_
240
+ - Password Store (pass) backend for python's keyring
241
+ - `keyring_jeepney <https://pypi.org/project/keyring_jeepney>`__ - a
242
+ pure Python backend using the secret service DBus API for desktop
243
+ Linux (requires ``keyring<24``).
244
+
245
+
246
+ Write your own keyring backend
247
+ ==============================
248
+
249
+ The interface for the backend is defined by ``keyring.backend.KeyringBackend``.
250
+ Every backend should derive from that base class and define a ``priority``
251
+ attribute and three functions: ``get_password()``, ``set_password()``, and
252
+ ``delete_password()``. The ``get_credential()`` function may be defined if
253
+ desired.
254
+
255
+ See the ``backend`` module for more detail on the interface of this class.
256
+
257
+ Keyring employs entry points to allow any third-party package to implement
258
+ backends without any modification to the keyring itself. Those interested in
259
+ creating new backends are encouraged to create new, third-party packages
260
+ in the ``keyrings`` namespace, in a manner modeled by the `keyrings.alt
261
+ package <https://github.com/jaraco/keyrings.alt>`_. See the
262
+ ``setup.cfg`` file
263
+ in that project for hints on how to create the requisite entry points.
264
+ Backends that prove essential may be considered for inclusion in the core
265
+ library, although the ease of installing these third-party packages should
266
+ mean that extensions may be readily available.
267
+
268
+ To create an extension for Keyring, please submit a pull request to
269
+ have your extension mentioned as an available extension.
270
+
271
+ Runtime Configuration
272
+ =====================
273
+
274
+ Keyring additionally allows programmatic configuration of the
275
+ backend calling the api ``set_keyring()``. The indicated backend
276
+ will subsequently be used to store and retrieve passwords.
277
+
278
+ To invoke ``set_keyring``::
279
+
280
+ # define a new keyring class which extends the KeyringBackend
281
+ import keyring.backend
282
+
283
+ class TestKeyring(keyring.backend.KeyringBackend):
284
+ """A test keyring which always outputs the same password
285
+ """
286
+ priority = 1
287
+
288
+ def set_password(self, servicename, username, password):
289
+ pass
290
+
291
+ def get_password(self, servicename, username):
292
+ return "password from TestKeyring"
293
+
294
+ def delete_password(self, servicename, username):
295
+ pass
296
+
297
+ # set the keyring for keyring lib
298
+ keyring.set_keyring(TestKeyring())
299
+
300
+ # invoke the keyring lib
301
+ try:
302
+ keyring.set_password("demo-service", "tarek", "passexample")
303
+ print("password stored successfully")
304
+ except keyring.errors.PasswordSetError:
305
+ print("failed to store password")
306
+ print("password", keyring.get_password("demo-service", "tarek"))
307
+
308
+
309
+ Disabling Keyring
310
+ =================
311
+
312
+ In many cases, uninstalling keyring will never be necessary.
313
+ Especially on Windows and macOS, the behavior of keyring is
314
+ usually degenerate, meaning it will return empty values to
315
+ the caller, allowing the caller to fall back to some other
316
+ behavior.
317
+
318
+ In some cases, the default behavior of keyring is undesirable and
319
+ it would be preferable to disable the keyring behavior altogether.
320
+ There are several mechanisms to disable keyring:
321
+
322
+ - Uninstall keyring. Most applications are tolerant to keyring
323
+ not being installed. Uninstalling keyring should cause those
324
+ applications to fall back to the behavior without keyring.
325
+ This approach affects the Python environment where keyring
326
+ would otherwise have been installed.
327
+
328
+ - Configure the Null keyring in the environment. Set
329
+ ``PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring``
330
+ in the environment, and the ``Null`` (degenerate) backend
331
+ will be used. This approach affects all uses of Keyring where
332
+ that variable is set.
333
+
334
+ - Permanently configure the Null keyring for the user by running
335
+ ``keyring --disable`` or ``python -m keyring --disable``.
336
+ This approach affects all uses of keyring for that user.
337
+
338
+
339
+ Altering Keyring Behavior
340
+ =========================
341
+
342
+ Keyring provides a mechanism to alter the keyring's behavior through
343
+ environment variables. Each backend implements a
344
+ ``KeyringBackend.set_properties_from_env``, which
345
+ when invoked will find all environment variables beginning with
346
+ ``KEYRING_PROPERTY_{NAME}`` and will set a property for each
347
+ ``{NAME.lower()}`` on the keyring. This method is invoked during
348
+ initialization for the default/configured keyring.
349
+
350
+ This mechanism may be used to set some useful values on various
351
+ keyrings, including:
352
+
353
+ - keychain; macOS, path to an alternate keychain file
354
+ - appid; Linux/SecretService, alternate ID for the application
355
+
356
+
357
+ Using Keyring on Ubuntu 16.04
358
+ =============================
359
+
360
+ The following is a complete transcript for installing keyring in a
361
+ virtual environment on Ubuntu 16.04. No config file was used::
362
+
363
+ $ sudo apt install python3-venv libdbus-glib-1-dev
364
+ $ cd /tmp
365
+ $ pyvenv py3
366
+ $ source py3/bin/activate
367
+ $ pip install -U pip
368
+ $ pip install secretstorage dbus-python
369
+ $ pip install keyring
370
+ $ python
371
+ >>> import keyring
372
+ >>> keyring.get_keyring()
373
+ <keyring.backends.SecretService.Keyring object at 0x7f9b9c971ba8>
374
+ >>> keyring.set_password("system", "username", "password")
375
+ >>> keyring.get_password("system", "username")
376
+ 'password'
377
+
378
+
379
+ Using Keyring on headless Linux systems
380
+ =======================================
381
+
382
+ It is possible to use the SecretService backend on Linux systems without
383
+ X11 server available (only D-Bus is required). In this case:
384
+
385
+ * Install the `GNOME Keyring`_ daemon.
386
+ * Start a D-Bus session, e.g. run ``dbus-run-session -- sh`` and run
387
+ the following commands inside that shell.
388
+ * Run ``gnome-keyring-daemon`` with ``--unlock`` option. The description of
389
+ that option says:
390
+
391
+ Read a password from stdin, and use it to unlock the login keyring
392
+ or create it if the login keyring does not exist.
393
+
394
+ When that command is started, enter a password into stdin and
395
+ press Ctrl+D (end of data). After that, the daemon will fork into
396
+ the background (use ``--foreground`` option to block).
397
+ * Now you can use the SecretService backend of Keyring. Remember to
398
+ run your application in the same D-Bus session as the daemon.
399
+
400
+ .. _GNOME Keyring: https://wiki.gnome.org/Projects/GnomeKeyring
401
+
402
+ Using Keyring on headless Linux systems in a Docker container
403
+ =============================================================
404
+
405
+ It is possible to use keyring with the SecretService backend in Docker containers as well.
406
+ All you need to do is install the necessary dependencies and add the `--privileged` flag
407
+ to avoid any `Operation not permitted` errors when attempting to unlock the system's keyring.
408
+
409
+ The following is a complete transcript for installing keyring on a Ubuntu 18:04 container::
410
+
411
+ docker run -it -d --privileged ubuntu:18.04
412
+
413
+ $ apt-get update
414
+ $ apt install -y gnome-keyring python3-venv python3-dev
415
+ $ python3 -m venv venv
416
+ $ source venv/bin/activate # source a virtual environment to avoid polluting your system
417
+ $ pip3 install --upgrade pip
418
+ $ pip3 install keyring
419
+ $ dbus-run-session -- sh # this will drop you into a new D-bus shell
420
+ $ echo 'somecredstorepass' | gnome-keyring-daemon --unlock # unlock the system's keyring
421
+
422
+ $ python
423
+ >>> import keyring
424
+ >>> keyring.get_keyring()
425
+ <keyring.backends.SecretService.Keyring object at 0x7f9b9c971ba8>
426
+ >>> keyring.set_password("system", "username", "password")
427
+ >>> keyring.get_password("system", "username")
428
+ 'password'
429
+
430
+ Using Keyring with tox
431
+ ======================
432
+
433
+ Some backends rely on environment variables to operate correctly, and ``tox`` filters most environment variables by default.
434
+
435
+ For example, when using Keyring to store credentials for pip, one may encounter the following error when
436
+ running tests under ``tox`` when using a backend reliant on D-Bus:
437
+
438
+ RuntimeError: No recommended backend was available. Install the keyrings.alt package if you want to use the non-recommended backends. See README.rst for details.
439
+
440
+ This error is caused by Keyring KWallet backend not able to resolve the backing service.
441
+
442
+ To work around the issue, add ``DBUS_SESSION_BUS_ADDRESS`` to ``pass_env`` in the
443
+ ``tox`` configuration. Consider adding other necessary variables, such as ``DISPLAY`` and ``WAYLAND_DISPLAY`` (if using ``pinentry``).
444
+
445
+ Integration
446
+ ===========
447
+
448
+ API
449
+ ---
450
+
451
+ The keyring lib has a few functions:
452
+
453
+ * ``get_keyring()``: Return the currently-loaded keyring implementation.
454
+ * ``get_password(service, username)``: Returns the password stored in the
455
+ active keyring. If the password does not exist, it will return None.
456
+ * ``get_credential(service, username)``: Return a credential object stored
457
+ in the active keyring. This object contains at least ``username`` and
458
+ ``password`` attributes for the specified service, where the returned
459
+ ``username`` may be different from the argument.
460
+ * ``set_password(service, username, password)``: Store the password in the
461
+ keyring.
462
+ * ``delete_password(service, username)``: Delete the password stored in
463
+ keyring. If the password does not exist, it will raise an exception.
464
+
465
+ In all cases, the parameters (``service``, ``username``, ``password``)
466
+ should be Unicode text.
467
+
468
+
469
+ Exceptions
470
+ ----------
471
+
472
+ The keyring lib raises the following exceptions:
473
+
474
+ * ``keyring.errors.KeyringError``: Base Error class for all exceptions in keyring lib.
475
+ * ``keyring.errors.InitError``: Raised when the keyring cannot be initialized.
476
+ * ``keyring.errors.PasswordSetError``: Raised when the password cannot be set in the keyring.
477
+ * ``keyring.errors.PasswordDeleteError``: Raised when the password cannot be deleted in the keyring.
478
+
479
+ Get Involved
480
+ ============
481
+
482
+ Python keyring lib is an open community project and eagerly
483
+ welcomes contributors.
484
+
485
+ * Repository: https://github.com/jaraco/keyring/
486
+ * Bug Tracker: https://github.com/jaraco/keyring/issues/
487
+ * Mailing list: http://groups.google.com/group/python-keyring
488
+
489
+ Security Considerations
490
+ =======================
491
+
492
+ Each built-in backend may have security considerations to understand
493
+ before using this library. Authors of tools or libraries utilizing
494
+ ``keyring`` are encouraged to consider these concerns.
495
+
496
+ As with any list of known security concerns, this list is not exhaustive.
497
+ Additional issues can be added as needed.
498
+
499
+ - macOS Keychain
500
+ - Any Python script or application can access secrets created by
501
+ ``keyring`` from that same Python executable without the operating
502
+ system prompting the user for a password. To cause any specific
503
+ secret to prompt for a password every time it is accessed, locate
504
+ the credential using the ``Keychain Access`` application, and in
505
+ the ``Access Control`` settings, remove ``Python`` from the list
506
+ of allowed applications.
507
+
508
+ - Freedesktop Secret Service
509
+ - No analysis has been performed
510
+
511
+ - KDE4 & KDE5 KWallet
512
+ - No analysis has been performed
513
+
514
+ - Windows Credential Locker
515
+ - No analysis has been performed
516
+
517
+ Making Releases
518
+ ===============
519
+
520
+ This project makes use of automated releases and continuous
521
+ integration. The
522
+ simple workflow is to tag a commit and push it to Github. If it
523
+ passes tests in CI, it will be automatically deployed to PyPI.
524
+
525
+ Other things to consider when making a release:
526
+
527
+ - Check that the changelog is current for the intended release.
528
+
529
+ Running Tests
530
+ =============
531
+
532
+ Tests are continuously run in Github Actions.
533
+
534
+ To run the tests locally, install and invoke
535
+ `tox <https://pypi.org/project/tox>`_.
536
+
537
+ Background
538
+ ==========
539
+
540
+ The project was based on Tarek Ziade's idea in `this post`_. Kang Zhang
541
+ initially carried it out as a `Google Summer of Code`_ project, and Tarek
542
+ mentored Kang on this project.
543
+
544
+ .. _this post: http://tarekziade.wordpress.com/2009/03/27/pycon-hallway-session-1-a-keyring-library-for-python/
545
+ .. _Google Summer of Code: http://socghop.appspot.com/
546
+
547
+ For Enterprise
548
+ ==============
549
+
550
+ Available as part of the Tidelift Subscription.
551
+
552
+ This project and the maintainers of thousands of other packages are working with Tidelift to deliver one enterprise subscription that covers all of the open source you use.
553
+
554
+ `Learn more <https://tidelift.com/subscription/pkg/pypi-keyring?utm_source=pypi-keyring&utm_medium=referral&utm_campaign=github>`_.
@@ -0,0 +1,67 @@
1
+ ../../../bin/keyring,sha256=YP_PmfkQTakwxi_R6yEP6sWTWCrwnM6rRX9E1qyPMWE,192
2
+ keyring-25.7.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
3
+ keyring-25.7.0.dist-info/METADATA,sha256=vVTemP7ebcPh882JtON8ldiEKlI727nlKrQO3_GDcWM,21447
4
+ keyring-25.7.0.dist-info/RECORD,,
5
+ keyring-25.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
6
+ keyring-25.7.0.dist-info/entry_points.txt,sha256=8ibyc9zH2ST1JDZHWlQZHEUPx9kVaXfVy8z5af_6OUk,334
7
+ keyring-25.7.0.dist-info/licenses/LICENSE,sha256=WlfLTbheKi3YjCkGKJCK3VfjRRRJ4KmnH9-zh3b9dZ0,1076
8
+ keyring-25.7.0.dist-info/top_level.txt,sha256=ohh1dke28_NdSNkZ6nkVSwIKkLJTOwIfEwnXKva3pkg,8
9
+ keyring/__init__.py,sha256=4bk66hxOsw5JRhyy4I9U8c_VXK-pLusB-YB-aS86ot0,271
10
+ keyring/__main__.py,sha256=vB_vOSk4pIZrkevBQeHXy6GYv7Nd0_vieKe44Xf1i9g,71
11
+ keyring/__pycache__/__init__.cpython-312.pyc,,
12
+ keyring/__pycache__/__main__.cpython-312.pyc,,
13
+ keyring/__pycache__/backend.cpython-312.pyc,,
14
+ keyring/__pycache__/cli.cpython-312.pyc,,
15
+ keyring/__pycache__/completion.cpython-312.pyc,,
16
+ keyring/__pycache__/core.cpython-312.pyc,,
17
+ keyring/__pycache__/credentials.cpython-312.pyc,,
18
+ keyring/__pycache__/devpi_client.cpython-312.pyc,,
19
+ keyring/__pycache__/errors.cpython-312.pyc,,
20
+ keyring/__pycache__/http.cpython-312.pyc,,
21
+ keyring/backend.py,sha256=hg5qqlLy2K_KSh2sZ6BM_nFbgIKjFhjz5iJwwsdqIHs,9069
22
+ keyring/backend_complete.bash,sha256=I3bRA3fGR_duzLrJyki94CaxxnelhiiXYyXLvUmlbec,397
23
+ keyring/backend_complete.zsh,sha256=Je9QAn0CbF8_8ssGSkroa4HMcJDB3g20yL8XhhW50fI,451
24
+ keyring/backends/SecretService.py,sha256=qt9lQpa8h6rGnjzTOE8GMIDH2e2J40RIhV3yc1TXSsc,4712
25
+ keyring/backends/Windows.py,sha256=2pi3LSV2RCwXrLYeNplIUVJgPLH5uMnyYcSBgo-6kmw,5727
26
+ keyring/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ keyring/backends/__pycache__/SecretService.cpython-312.pyc,,
28
+ keyring/backends/__pycache__/Windows.cpython-312.pyc,,
29
+ keyring/backends/__pycache__/__init__.cpython-312.pyc,,
30
+ keyring/backends/__pycache__/chainer.cpython-312.pyc,,
31
+ keyring/backends/__pycache__/fail.cpython-312.pyc,,
32
+ keyring/backends/__pycache__/kwallet.cpython-312.pyc,,
33
+ keyring/backends/__pycache__/libsecret.cpython-312.pyc,,
34
+ keyring/backends/__pycache__/null.cpython-312.pyc,,
35
+ keyring/backends/chainer.py,sha256=-hhe-UWbCn0PAUK-00cWjHz_JJNQf_N4OyHUn89yCOw,2175
36
+ keyring/backends/fail.py,sha256=ef5uP3Ddj2apq2pe08LXI2lLgpkmN0UrKZmOx58UHIU,914
37
+ keyring/backends/kwallet.py,sha256=Le-bwfJVN7dNUiMLYLE66e0HzM5gmJZpXnmLQkDlCEo,5824
38
+ keyring/backends/libsecret.py,sha256=gWeUveE44wZH0j7t2w2L-leYMpJOEHV0OqSUiC-sHQE,5942
39
+ keyring/backends/macOS/__init__.py,sha256=-CIONvwrJFbeuj60opbCMZw4wWtiGyHuGCshocd4Ndg,2589
40
+ keyring/backends/macOS/__pycache__/__init__.cpython-312.pyc,,
41
+ keyring/backends/macOS/__pycache__/api.cpython-312.pyc,,
42
+ keyring/backends/macOS/api.py,sha256=eikiBaGcYCQpqDsNdLy8wNoB_nFBYfY41j_38vsMKpo,4576
43
+ keyring/backends/null.py,sha256=HW-Ovygh78UebL-ICPTilmCOk37h5WFPvVlMnNP8ElA,438
44
+ keyring/cli.py,sha256=B9084Rmlt4atfQCw2qugMmovVQzeFjkeLRf6vTNcMTI,6605
45
+ keyring/compat/__init__.py,sha256=WXWOxJd1wdBdrTNjKqjt8jOmfIahcIipDahbqdlQ6g8,169
46
+ keyring/compat/__pycache__/__init__.cpython-312.pyc,,
47
+ keyring/compat/__pycache__/properties.cpython-312.pyc,,
48
+ keyring/compat/__pycache__/py312.cpython-312.pyc,,
49
+ keyring/compat/properties.py,sha256=JTlR3v7A5AgK93grI2nIW1sj0efYePgWQURDsWHwzj4,3886
50
+ keyring/compat/py312.py,sha256=euMz5d91tbdrG2JkpoqDu3bBg3Pjzd3pEyWVxSK4IkA,159
51
+ keyring/completion.py,sha256=MSj0qPtLAhhN9kSk34LRzGSYIhS19aG05wlYl_RHG_Q,1450
52
+ keyring/core.py,sha256=2zEOVKitYardvqPDHzMFCRfIB812cuXLbIVh9udbxc0,5848
53
+ keyring/credentials.py,sha256=PWFUzeAEX9FqjYonSIST4y6WHqQ2lKceLcvicKSaipY,2092
54
+ keyring/devpi_client.py,sha256=IpkyYAso0BH9tXpsZ3K1UjJG_Obtj6kTflrpDatNzoQ,603
55
+ keyring/errors.py,sha256=hiHZxG3e1WABMDw80iT0Yg6qrccaVuVUpTNFK7iVmnY,1625
56
+ keyring/http.py,sha256=udH83q5BIrfKYm-4AOuefQ3Avb-J9UbpXBYu49Ik_iA,1214
57
+ keyring/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
+ keyring/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
+ keyring/testing/__pycache__/__init__.cpython-312.pyc,,
60
+ keyring/testing/__pycache__/backend.cpython-312.pyc,,
61
+ keyring/testing/__pycache__/util.cpython-312.pyc,,
62
+ keyring/testing/backend.py,sha256=HuCE8NL1rXMIZBrFELce2aO-N5pY3UEtQLDsNdCgvyA,7551
63
+ keyring/testing/util.py,sha256=O15JsfcLIBcnsF1O8LfnbWkeEuiEfbovzQ1h8oN7XUA,1884
64
+ keyring/util/__init__.py,sha256=ilEB7cz4cWl7acmrubGF9142ZeBer1mFqaL0U-7UXAc,302
65
+ keyring/util/__pycache__/__init__.cpython-312.pyc,,
66
+ keyring/util/__pycache__/platform_.cpython-312.pyc,,
67
+ keyring/util/platform_.py,sha256=lhsGKWZobEvsztNOkotUoNqiHUhJ7G4ENCfdDwp2wVA,1092
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,13 @@
1
+ [console_scripts]
2
+ keyring = keyring.cli:main
3
+
4
+ [devpi_client]
5
+ keyring = keyring.devpi_client
6
+
7
+ [keyring.backends]
8
+ KWallet = keyring.backends.kwallet
9
+ SecretService = keyring.backends.SecretService
10
+ Windows = keyring.backends.Windows
11
+ chainer = keyring.backends.chainer
12
+ libsecret = keyring.backends.libsecret
13
+ macOS = keyring.backends.macOS
@@ -0,0 +1,18 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 <copyright holders>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
7
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
9
+ following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all copies or substantial
12
+ portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
15
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
16
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
package/vendor/obi/obi CHANGED
Binary file