python-picnic provides Python bindings based on Cython for the Picnic post-quantum signature scheme.
Cython >= 0.28
(only for building)pkgconfig
(only for building)- Picnic
python-picnic can be installed via pip
:
pip install python-picnic
or by running:
python3 setup.py install
Packages for Ubuntu are also available via the picnic PPA:
sudo add-apt-repository ppa:s-ramacher/picnic
sudo apt update
sudo apt install python3-picnic
import picnic
# create keypair
sk, pk = picnic.keygen(picinc.Picnic_L1_full)
# sign a message
sig = picnic.sign(sk, b"a message")
# verify a signature
picnic.verify(pk, b"a message", sig)
The code is licensed under the MIT license.