--- Begin Message ---
- To: Debian Bug Tracking System <submit@bugs.debian.org>
- Subject: ITP: chacha20poly1305-reuseable -- Reusable ChaCha20Poly1305 for asyncio
- From: Edward Betts <edward@4angle.com>
- Date: Mon, 20 May 2024 05:05:45 +0100
- Message-id: <hgl26spywyenbyhrpd53u7vcibbhpcliyhqskdoucdsyvxrxdr@eziydtjwylba>
Package: wnpp
Severity: wishlist
Owner: Edward Betts <edward@4angle.com>
X-Debbugs-Cc: debian-devel@lists.debian.org, debian-python@lists.debian.org
* Package name : chacha20poly1305-reuseable
Version : 0.12.1
Upstream Author : J. Nick Koston <nick@koston.org>
* URL : https://github.com/bdraco/chacha20poly1305-reuseable
* License : Apache-2.0
Programming Lang: Python
Description : Reusable ChaCha20Poly1305 for asyncio
Provides a reusable implementation of the ChaCha20Poly1305 encryption
algorithm for asyncio.
.
This allows for efficient encryption and decryption operations within
asynchronous Python applications.
.
Example usage:
.
>>> from chacha20poly1305_reuseable import ChaCha20Poly1305Reusable
>>> key = ChaCha20Poly1305Reusable.generate_key()
>>> chacha = ChaCha20Poly1305Reusable(key)
>>> nonce = b"0" * 12
>>> ciphertext = chacha.encrypt(nonce, b"some_data", b"")
>>> plaintext = chacha.decrypt(nonce, ciphertext, b"")
I plan to maintain this package as part of the Python team.
--- End Message ---