An open API service indexing awesome lists of open source software.

https://github.com/python-kasa/kasa-crypt

Fast kasa crypt
https://github.com/python-kasa/kasa-crypt

Last synced: 9 months ago
JSON representation

Fast kasa crypt

Awesome Lists containing this project

README

          

# 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.