pasta_curves-source/src/pasta/fields.rs

8 lines
151 B
Rust

//! This module contains implementations for the two finite fields of the Pallas
//! and Vesta curves.
mod fp;
mod fq;
pub use fp::*;
pub use fq::*;