{"library":"pymonocypher","title":"pymonocypher","description":"Python ctypes bindings to the Monocypher library. Current version: 4.0.2.6, requires Python ~=3.10. Release cadence: irregular, tied to Monocypher updates.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install pymonocypher"],"cli":null},"imports":["from pymonocypher import pymonocypher as m","m.crypto_sign(msg, sk)"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from pymonocypher import pymonocypher as m\nkey = m.crypto_sign_keypair()\nprint('Public key:', key.pk.hex())\nmsg = b'Hello'\nsig = m.crypto_sign(msg, key.sk)\nprint('Signature:', sig.hex())\n# Verify\nm.crypto_sign_verify(sig, msg, key.pk)\nprint('Verified OK')","lang":"python","description":"Generate a signing keypair, sign a message, and verify the signature.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}