Metadata-Version: 2.4 Name: kasa-crypt Version: 1.1.0 Summary: Fast kasa crypt License-Expression: Apache-2.0 License-File: LICENSE Author: J. Nick Koston Author-email: nick@koston.org Requires-Python: >=3.9 Classifier: Development Status :: 2 - Pre-Alpha Classifier: Intended Audience :: Developers Classifier: Natural Language :: English Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 Classifier: Programming Language :: Python :: 3.14 Classifier: Topic :: Software Development :: Libraries Project-URL: Bug Tracker, https://github.com/python-kasa/kasa-crypt/issues Project-URL: Changelog, https://github.com/python-kasa/kasa-crypt/blob/main/CHANGELOG.md Project-URL: Repository, https://github.com/python-kasa/kasa-crypt Description-Content-Type: text/markdown # kasa-crypt

CI Status Test coverage percentage

Poetry black pre-commit

PyPI Version Supported Python versions License

Fast kasa crypt ## Installation Install this via pip (or your favourite package manager): `pip install kasa-crypt` ## Example usage ```python from kasa_crypt import encrypt, decrypt encrypted = encrypt('{"hello":"world"}') decrypted = decrypt(encrypted[4:]) # Always a 4 byte header print (decrypted) ``` ## Contributors ✨ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! ## Credits This package was created with [Copier](https://copier.readthedocs.io/) and the [browniebroke/pypackage-template](https://github.com/browniebroke/pypackage-template) project template.