Replies: 1 comment 15 replies
-
Yes, the range proofs assume it is secp256k1, See: https://github.com/ZenGo-X/multi-party-ecdsa/blob/master/src/utilities/mta/range_proofs.rs#L153 |
Beta Was this translation helpful? Give feedback.
15 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
multi-party-ecdsa/src/utilities/mta/test.rs
Line 7 in fc4a0ed
This test function works fine with the secp256_k1 curve, but if you change the underlying curve scalars and points to those of Ed25519, it fails always. To see the issue you need to refactor the test function and also
MessageA
,MessageB
, etc. You can take a look at this repo where I prepared the mta_test in isolation and performed tests over all the curves (using curv-kzen v0.9). The result shows issues with Ed25519 and Ristretto, others curves work fine.Beta Was this translation helpful? Give feedback.
All reactions