Files
ark-curves-cherry-picked/ed25519/src/constraints/mod.rs
Weikeng Chen a7d266f73d Add the ed25519 curve (#121)
* add ed25519 curve

* changelog

* curve info

* fix

* cleanup the script

* Update ed25519/src/curves/mod.rs

* Update ed25519/src/curves/mod.rs

Co-authored-by: onewayfunc <onewayfunc@gmail.com>
2022-10-29 19:33:55 -07:00

9 lines
174 B
Rust

//! This module implements the R1CS equivalent of `ark_ed25519`.
//! It requires a curve that embeds ed25519.
mod curves;
mod fields;
pub use curves::*;
pub use fields::*;