Files
serai/crypto/ff-group-tests/src/lib.rs
Luke Parker 445bb3786e Add a dedicated crate for testing ff/group implementors
Provides extensive testing for dalek-ff-group and ed448.

Also includes a fix for an observed bug in ed448.
2022-12-24 15:09:09 -05:00

10 lines
234 B
Rust

#![cfg_attr(docsrs, feature(doc_auto_cfg))]
/// Tests for the Field trait.
pub mod field;
/// Tests for the PrimeField and PrimeFieldBits traits.
pub mod prime_field;
/// Tests for the Group and GroupEncoding traits.
pub mod group;