├── .git-blame-ignore-revs ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── changelog ├── docs ├── changelog.rst ├── collection.rst ├── conf.py ├── exceptions.rst ├── index.rst ├── item.rst ├── requirements.txt └── util.rst ├── pyproject.toml ├── secretstorage ├── __init__.py ├── collection.py ├── defines.py ├── dhcrypto.py ├── exceptions.py ├── item.py ├── py.typed └── util.py └── tests ├── __init__.py ├── cleanup_test_items.py ├── run_tests.py ├── test_collection.py ├── test_context_manager.py ├── test_exceptions.py ├── test_item.py └── test_unlocking.py /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | fa7dbc514843842ce63de0d43c14561e9d26c1ab 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | MANIFEST 4 | __pycache__ 5 | *.pyc 6 | SecretStorage.egg-info 7 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/README.rst -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/changelog -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/collection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/docs/collection.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/docs/exceptions.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/item.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/docs/item.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | Sphinx>=3.0 2 | -------------------------------------------------------------------------------- /docs/util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/docs/util.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/pyproject.toml -------------------------------------------------------------------------------- /secretstorage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/secretstorage/__init__.py -------------------------------------------------------------------------------- /secretstorage/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/secretstorage/collection.py -------------------------------------------------------------------------------- /secretstorage/defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/secretstorage/defines.py -------------------------------------------------------------------------------- /secretstorage/dhcrypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/secretstorage/dhcrypto.py -------------------------------------------------------------------------------- /secretstorage/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/secretstorage/exceptions.py -------------------------------------------------------------------------------- /secretstorage/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/secretstorage/item.py -------------------------------------------------------------------------------- /secretstorage/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /secretstorage/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/secretstorage/util.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cleanup_test_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/tests/cleanup_test_items.py -------------------------------------------------------------------------------- /tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/tests/run_tests.py -------------------------------------------------------------------------------- /tests/test_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/tests/test_collection.py -------------------------------------------------------------------------------- /tests/test_context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/tests/test_context_manager.py -------------------------------------------------------------------------------- /tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/tests/test_exceptions.py -------------------------------------------------------------------------------- /tests/test_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/tests/test_item.py -------------------------------------------------------------------------------- /tests/test_unlocking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitya57/secretstorage/HEAD/tests/test_unlocking.py --------------------------------------------------------------------------------