mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
Provides extensive testing for dalek-ff-group and ed448. Also includes a fix for an observed bug in ed448.
14 lines
193 B
Rust
14 lines
193 B
Rust
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
|
#![no_std]
|
|
|
|
mod backend;
|
|
|
|
pub mod scalar;
|
|
pub use scalar::Scalar;
|
|
|
|
pub mod field;
|
|
pub use field::FieldElement;
|
|
|
|
pub mod point;
|
|
pub use point::Point;
|