--- id: ed25519-blake2b-fork version: "1.4.2" license: unclear license_treatment: permissive maintenance: active --- # ed25519-blake2b-fork — Ed25519 public-key signatures (BLAKE2b fork) License: permissive · Maintenance: active · Downloads: 182.7K/mo ## What it is and what it does This package wraps a C implementation of Ed25519 digital signatures, modified to use BLAKE2b as the hash algorithm instead of SHA512. It allows you to create signing and verifying keypairs, sign messages deterministically, and verify signatures. The underlying C code is from the SUPERCOP benchmark suite and is in the public domain; the Python binding is MIT-licensed. The package is designed for systems like NANO that require Ed25519 signatures with BLAKE2b hashing. Keys and signatures are compact (32 bytes for keys, 64 bytes for signatures), and operations complete in milliseconds. It provides both binary and ASCII-encoded (base64, base32, base16, hex) interfaces for keys and signatures, making it easy to serialize and transmit them. Use it for: - Sign and verify messages in NANO or other systems that require Ed25519 with BLAKE2b hashing. - Generate and manage Ed25519 keypairs for cryptographic protocols that need deterministic signatures. - Serialize public keys and signatures to ASCII formats for storage in JSON, configuration files, or over text-based protocols. - Derive signing keys from existing secrets by providing a 32-byte seed. - Verify message authenticity in distributed systems or peer-to-peer applications. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Provides Python bindings to Ed25519 digital signatures using BLAKE2b instead of SHA512, enabling signature creation and verification compatible with NANO and similar systems. Yes, if you need Ed25519 signatures with BLAKE2b for NANO or a compatible system. The package is actively maintained, has no known vulnerabilities, and uses a permissive license. Install friction is moderate due to C compilation, but prebuilt wheels cover common platforms. Verify that this fork is the recommended version for your use case, as the repository has minimal visibility (1 star). ## Install pip install ed25519-blake2b-fork uv add ed25519-blake2b-fork poetry add ed25519-blake2b-fork ## Installing ed25519-blake2b-fork Before you install: Medium install friction due to C compilation requirement, but prebuilt wheels are available for common platforms (Python 3.10–3.11 on macOS, Linux, Windows, and musl). Repository is active with a recent commit. License in practice: Permissive license (MIT) allows commercial and private use with minimal restrictions; no copyleft obligations. Quickstart: pip install ed25519-blake2b-fork import ed25519_blake2b signing_key, verifying_key = ed25519_blake2b.create_keypair() sig = signing_key.sign(b"hello world", encoding="base64") verifying_key.verify(sig, b"hello world", encoding="base64") Requires a C compiler if building from source; prebuilt wheels available for Python 3.10–3.11 on major platforms. Verify before relying: - Whether the package is actively maintained beyond the single recent commit shown; repository shows only 1 star. - Whether BLAKE2b fork maintains full Ed25519 security properties or introduces any cryptographic differences from the original. - Current status of the upstream python-ed25519-blake2b repository and whether this fork is the recommended version. ## Package facts - License: not declared (permissive) - Python support: unspecified - Install friction: medium - Maintenance: active - Downloads: 182.7K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags ed25519 signatures python, blake2b digital signatures, nano cryptocurrency signing, public key cryptography, message authentication bindings, cryptography, ed25519, nano [View on SkillFed](https://skillfed.io/packages/ed25519-blake2b-fork) · [View on PyPI](https://pypi.org/project/ed25519-blake2b-fork/)