mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-04 20:03:39 +00:00
8 lines
151 B
Rust
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::*;
|