pasta_curves/
arithmetic.rs

1//! This module provides common utilities, traits and structures for group and
2//! field arithmetic.
3//!
4//! This module is temporary, and the extension traits defined here are expected to be
5//! upstreamed into the `ff` and `group` crates after some refactoring.
6
7mod curves;
8mod fields;
9
10pub use curves::*;
11pub(crate) use fields::*;