We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After trying to initialize ECDH with Ed25519 and compute a shared secret it returns the following error:
AttributeError: 'PrivateKey' object has no attribute 'secret_multiplier'
I believe it's called __s in eddsa.PrivateKey class.
__s
eddsa.PrivateKey
The text was updated successfully, but these errors were encountered:
yes, because that's Ed25519, ECDH operation over Curve25519 is X25519, that's not implemented.
it's documented in the README.md:
Key generation, siging and verifying is also supported for Ed25519 and Ed448 curves.
Sorry, something went wrong.
No branches or pull requests
After trying to initialize ECDH with Ed25519 and compute a shared secret it returns the following error:
AttributeError: 'PrivateKey' object has no attribute 'secret_multiplier'
I believe it's called
__s
ineddsa.PrivateKey
class.The text was updated successfully, but these errors were encountered: