Files
serai/crypto/ed448/src/lib.rs
Luke Parker 1e448dec21 Add no_std support to transcript, dalek-ff-group, ed448, ciphersuite, multiexp, schnorr, and monero-generators
transcript, dalek-ff-group, ed449, and ciphersuite are all usable with no_std
alone. The rest additionally require alloc.

Part of #279.
2023-04-22 04:38:47 -04:00

16 lines
233 B
Rust

#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc = include_str!("../README.md")]
#![no_std]
#[macro_use]
mod backend;
mod scalar;
pub use scalar::Scalar;
mod field;
pub use field::FieldElement;
mod point;
pub use point::Point;