Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.debian.maint.python > #15849

Bug#1071485: ITP: chacha20poly1305-reuseable -- Reusable ChaCha20Poly1305 for asyncio

From Edward Betts <edward@4angle.com>
Newsgroups linux.debian.bugs.dist, linux.debian.devel, linux.debian.maint.python
Subject Bug#1071485: ITP: chacha20poly1305-reuseable -- Reusable ChaCha20Poly1305 for asyncio
Date 2024-05-20 06:10 +0200
Message-ID <IG2vv-eymq-1@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Cross-posted to 3 groups.

Show all headers | View raw


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.

Back to linux.debian.maint.python | Previous | Next | Find similar | Unroll thread


Thread

Bug#1071485: ITP: chacha20poly1305-reuseable -- Reusable ChaCha20Poly1305 for asyncio Edward Betts <edward@4angle.com> - 2024-05-20 06:10 +0200

csiph-web