ed448_goldilocks/lib.rs
1#![forbid(unsafe_code)]
2// XXX: Change this to deny later on
3#![warn(unused_attributes, unused_imports, unused_mut, unused_must_use)]
4
5// Internal macros. Must come first!
6#[macro_use]
7pub(crate) mod macros;
8
9// As usual, we will use this file to carefully define the API/ what we expose to the user
10pub mod constants;
11pub mod curve;
12pub mod decaf;
13mod field;
14pub mod ristretto;
15
16pub use field::Scalar;