Package: wnpp Severity: wishlist Owner: Edward Betts <edw...@4angle.com> X-Debbugs-Cc: debian-de...@lists.debian.org, debian-python@lists.debian.org
* Package name : chacha20poly1305-reuseable Version : 0.12.1 Upstream Author : J. Nick Koston <n...@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.