Package: wnpp Severity: wishlist Owner: Jan Mojzis <jan.moj...@gmail.com> X-Debbugs-Cc: debian-de...@lists.debian.org
* Package name : python-lib1305 Version : 20250407.1 Upstream Contact: Jan Mojzis <jan.moj...@gmail.com> * URL : https://github.com/janmojzis/python-lib1305 * License : CC0 Programming Lang: Python Description : Python wrapper around microlibrary for the Poly1305 one-time authenticator Python wrapper around implementation of the Poly1305 one-time authenticator. The Python API for lib1305 provides the functions: poly1305.auth() poly1305.verify() The library has a very simple stateless API. As an example, the following script generates an authenticator 'a' given a message 'm' and a secret key 'k'. And verifies an authenticator 'a' given a message 'm' and a secret key 'k'. from lib1305 import poly1305 a = poly1305.auth(m, k) poly1305.verify(a, m, k) This package is related to: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1102291 I'm going to maintain the package using https://salsa.debian.org/ It is being prepared here: https://salsa.debian.org/janmojzis/python-lib1305 Jan