Open aptly-io opened 3 years ago
This project does EdDSA with Ed25519 and blake2b correctly: https://github.com/Matoking/python-ed25519-blake2b
You cannot use 'Curve25519
' with eddsa, you have to use 'Ed25519
'
Curve25519 is for DH, Ed25519 is for signing.
I should add a check in the builder.
Trying to sign with EDDSA as below returns me an Exception. Is there someone who can explain what I do wrong?
(I'm using 1.2.5 on python3 3.7.5)
I assume one has to use the Ed25519 instead of Curve25519 ...