mirror of
https://github.com/arnaucube/ark-curves-cherry-picked.git
synced 2026-01-17 03:01:28 +01:00
* 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>
9 lines
174 B
Rust
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::*;
|