pasta_curves-source/src/fields.rs

9 lines
151 B
Rust
Raw Normal View History

2020-12-03 20:45:13 +00:00
//! 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::*;