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
use ec::curve_ops::Curve;
#[path = "jacobi_quartic_vectors.rs"]
mod jacobi_quartic_vectors;

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

#[path = "field_adapter.rs"]
mod field_adapter;

use field_adapter::{f, F};

// Because the suites use #[macro_export], call them directly:
jacobi_quartic_test_suite!(ec, F, f);
jacobi_intersection_test_suite!(ec, F, f);