py-ed25519-zebra-bindings
Python bindings for the ed25519-zebra RUST crate
What it is and what it does
py-ed25519-zebra-bindings wraps the ed25519-zebra Rust crate to provide Ed25519 operations in Python. It exposes functions for deriving a keypair from a seed, signing a message with a private key, and verifying a signature against a message and public key. The bindings are compiled to native code, so installation requires a pre-built wheel for your platform or a local Rust build environment; wheels are available for Python 3.9, 3.10, 3.11, 3.12, and 3.13 across common architectures.
The package has no runtime dependencies and is designed for applications that need Ed25519 signatures—blockchain systems, cryptographic protocols, or any system requiring deterministic public-key signing. It is maintained as part of the Polkascan project and carries no known security vulnerabilities.
Use it for:
- Derive Ed25519 keypairs from seeds in blockchain or wallet applications.
- Sign transactions or messages in cryptocurrency or distributed-ledger systems.
- Verify cryptographic signatures in authentication or integrity-checking workflows.
- Integrate Ed25519 signing into Python applications requiring compiled-code performance.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides Python bindings to the ed25519-zebra Rust crate for Ed25519 digital signature operations—key derivation, signing, and verification.
Yes, if you need Ed25519 signing and verification in Python and can accommodate medium install friction. The package is actively maintained, carries no known vulnerabilities, uses a permissive license, and has no runtime dependencies. Install it if your use case requires deterministic Ed25519 operations; skip it if you prefer pure-Python alternatives.
Install
py-ed25519-zebra-bindings on PyPI
pip
pip install py-ed25519-zebra-bindingsuv
uv add py-ed25519-zebra-bindingspoetry
poetry add py-ed25519-zebra-bindingsInstalling py-ed25519-zebra-bindings
Before you install
Medium install friction due to compiled wheels; pre-built binaries available for Python 3.9–3.13 on Linux (x86_64, aarch64, armv7l, ppc64le, i686), macOS (x86_64, arm64), Windows, and musl systems. Repository is active with recent commits.
License in practice
Licensed under Apache Software License (permissive); no restrictions on commercial or private use, modification, or distribution provided the license and copyright notice are retained.
Quickstart
pip install py-ed25519-zebra-bindings
import py-ed25519-zebra-bindings
message = b"test"
private_key, public_key = ed_from_seed(seed_bytes)
signature = ed_sign(private_key, message)
if ed_verify(signature, message, public_key):
print('Verified')
Requires Python 3.9 or later; seed derivation typically requires a separate BIP39 library.
Verify before relying
- Exact API function names and signatures beyond what the description excerpt shows.
- Performance characteristics compared to pure-Python or other Ed25519 implementations.
- Whether the package is actively maintained beyond the last commit date (2026-06-15).
Package facts
| License | not declared (permissive) |
| Python support | supports the current Python release (>=3.9) |
| Install friction | medium — platform-specific wheel |
| Runtime dependencies | none |
| Maintenance | actively maintained — 345 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 265,107/month — #8,329 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: py_ed25519_zebra_bindings-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl; py_ed25519_zebra_bindings-1.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl; py_ed25519_zebra_bindings-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl; py_ed25519_zebra_bindings-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl; py_ed25519_zebra_bindings-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl; py_ed25519_zebra_bindings-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl; py_ed25519_zebra_bindings-1.3.0-cp310-cp310-musllinux_1_2_armv7l.whl; py_ed25519_zebra_bindings-1.3.0-cp310-cp310-musllinux_1_2_i686.whl; py_ed25519_zebra_bindings-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl; py_ed25519_zebra_bindings-1.3.0-cp310-cp310-win32.whl; py_ed25519_zebra_bindings-1.3.0-cp310-cp310-win_amd64.whl; py_ed25519_zebra_bindings-1.3.0-cp311-cp311-macosx_10_12_x86_64.whl; py_ed25519_zebra_bindings-1.3.0-cp311-cp311-macosx_11_0_arm64.whl; py_ed25519_zebra_bindings-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl; py_ed25519_zebra_bindings-1.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl; py_ed25519_zebra_bindings-1.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl; py_ed25519_zebra_bindings-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl; py_ed25519_zebra_bindings-1.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl; py_ed25519_zebra_bindings-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl; py_ed25519_zebra_bindings-1.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Tags
More Cryptography packages
Certifi provides Mozilla's curated collection…
copyleft · top 100 on PyPI
cryptographycryptography provides cryptographic recipes and…
permissive · top 100 on PyPI
rsaPure-Python RSA encryption, decryption,…
permissive · top 1,000 on PyPI
pyOpenSSLpyOpenSSL wraps OpenSSL's SSL/TLS functionality…
permissive · top 1,000 on PyPI
azure-identityProvides Microsoft Entra ID token-based…
unclear · top 1,000 on PyPI
PyNaClPyNaCl provides Python bindings to libsodium…
permissive · top 1,000 on PyPI
ed25519-blake2b-forkProvides Python bindings to Ed25519 digital…
permissive · top 15,000 on PyPI
py-sr25519-bindingsProvides Python bindings to the sr25519 Rust…
permissive · top 15,000 on PyPI
py-bip39-bindingsProvides Python bindings to the tiny-bip39 Rust…
permissive · top 15,000 on PyPI
securesystemslibSecuresystemslib provides a cryptography…
permissive · top 5,000 on PyPI
pure25519Pure-Python implementation of Curve25519 and…
permissive · top 15,000 on PyPI
smoldot-lightPython bindings for the smoldot_light Rust…
unclear · top 15,000 on PyPI
fastecdsaProvides fast elliptic curve digital signature…
permissive · top 15,000 on PyPI
ECPyECPy is a pure Python elliptic curve library…
permissive · top 15,000 on PyPI
x25519Provides pure Python implementations of…
permissive · top 15,000 on PyPI
biscuit-pythonPython bindings for the biscuit authentication…
unclear · top 15,000 on PyPI