ecrust-ec 0.1.1

Elliptic-curve abstractions and point arithmetic for the ecrust ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Example wrapper showing how to instantiate the reusable suites.
//!
//! Copy this file to your crate's `tests/` directory, then replace the adapter.

#[path = "jacobi_quartic_vectors.rs"]
mod jacobi_quartic_vectors;
#[path = "jacobi_intersection_vectors.rs"]
mod jacobi_intersection_vectors;

// Replace this line with your real adapter file.
// #[path = "field_adapter.rs"]
// mod field_adapter;

// use field_adapter::{f, F};

// jacobi_quartic_test_suite!(ec, F, f);
// jacobi_intersection_test_suite!(ec, F, f);