python3-lib1305

Poly1305 one-time authenticator microlibrary - Python wrapper

Description

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)

Upload more screenshots

Please help extend the collection of screenshots. Just make a screenshot and upload it here. You don't need to register or anything.

Upload a screenshot

Hint: upload an image here from your clipboard with Ctrl-V


Homepage

https://github.com/janmojzis/python-lib1305


Install this software package

If the package is available for the distribution you are currently using on your computer then install the software by clicking on…

Install python3-lib1305