pasta_curves-source/src/fields.rs
2021-03-03 21:59:08 +00:00

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::*;