python-ed25519 icon indicating copy to clipboard operation
python-ed25519 copied to clipboard

Python bindings to the Ed25519 public-key signature system

Results 10 python-ed25519 issues
Sort by recently updated
recently updated
newest added

The fail* methods from TestCase have been deprecated as of Python 3.1 and 3.2, and were finally removed in Python 3.12. Switch to using the non-deprecated assert* functions.

Attempting to install this Python module under Python 3.12.0 fails, because of the legacy API removals in `configparser`, see ``` File "/home/pdp/tmp/pip-install-2veuinio/ed25519_edac44b7ec634c7a8d71316cd0dfedea/versioneer.py", line 399, in get_config_from_root parser = configparser.SafeConfigParser() ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...

i want to use this repo for pycryptopp in https://github.com/tahoe-lafs/pycryptopp/pull/47 im replacing pycryptopp's `src-ed25519` with ```sh rm -rf src-ed25519 cp -r $src_python_ed25519 src-python-ed25519 chmod -R +w src-python-ed25519 # fix: FileNotFoundError:...

Hello, I search an efficient non-deterministic signature algorithm in python. I found the following example for using ed25519, which reads VERY intriguing: ``` import ed25519 privKey, pubKey = ed25519.create_keypair() print("Private...

Given the file `hs_ed25519_secret_key`, how can you use that key with this package? It looks like the secret key provided by tor is just the SHA512 of the seed.

### Summary We have been trying to bump one of my projects to support 3.11 but ed25519 seemed to fail to install due to issues with versioneer. The issue has...

JMSwag asked me to report this error here (Please report to python-ed25519. I get the same error when I execute ed25519 from the repl.), this is in reference of the...

Is there a manual how to easily generate OpenSSH format keys using this ?

It'd be great if there was from_ascii and to_ascci base58 support.