-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
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
cannot multiply &&EdwardsBasepointTable
by &Scalar
#146
Comments
Also just encountered this, seems the latest version of Manually downgrading to the previous version resolved it for me:
|
In the let point = EdwardsPoint::mul_base(&self.privkey).to_montgomery(); This abstracts over various fixed-base scalar multiplication implementations based on what optimizations are available, including using the basepoint tables. |
Here's a PR which adds a first-class API for this: dalek-cryptography/curve25519-dalek#503 |
Likely, the culprit here is that Line 48 in dd50e62
Pre-releases are compared lexically, an Would it possible to get a hotfix release for curve25519-dalek = { version = "=4.0.0-pre.2", optional = true } |
Submitted a PR here: #147 |
Published a patch fix ( |
Hi there, I'm facing this issue when compiling my Substrate program:
The text was updated successfully, but these errors were encountered: