A fork of the ed25519 library that uses BLAKE2b instead of SHA-512 hashing for public-key signatures. Version 1.4.2 adds automatic wheel builds via cibuildwheel. The library provides Ed25519 signing and verification with a pure Python implementation. Release cadence is irregular.
pip install ed25519-blake2b-forkVerified import paths — ran on the pinned version, not inferred.
Generate a key pair, sign a message, and verify the signature.
Ensure you use this library only where BLAKE2b-based Ed25519 is expected.
Monitor the repository for updates or consider using the original ed25519 library with SHA-512 if compatibility is needed.
Pass a 32-byte seed to SigningKey(seed=your_seed) for reproducible keys.
Ensure you installed the package: pip install ed25519-blake2b-fork Then import: from ed25519_blake2b import SigningKey
Use from ed25519_blake2b import SigningKey. If still fails, reinstall package: pip install --upgrade ed25519-blake2b-fork
Ensure you are using the same key and that the message hashing uses BLAKE2b. This fork is not compatible with standard Ed25519.
No dependency data recorded yet.