dalek-cryptography / curve25519-dalek

A pure-Rust implementation of group operations on Ristretto and Curve25519
Other
850 stars 416 forks source link

Add VerifyingKey::to_edwards #624

Closed randombit closed 4 months ago

randombit commented 4 months ago

See #623

tarcieri commented 4 months ago

I assume the original reason for not having these was so curve25519-dalek could be upgraded without a SemVer break to ed25519-dalek, but we've already gone pretty far down that road since with e.g. to_montgomery

tarcieri commented 4 months ago

Hmm, an unrelated failure due to new nightly lints for a debugging trait which needs to get annotated with #[allow(dead_code)]

Edit: opened #625

tarcieri commented 4 months ago

@randombit #625 is merged. If you rebase it should fix the test failure

randombit commented 4 months ago

Rebased with #625

rozbb commented 4 months ago

Thank you!