Skip to main content

isogeny/
lib.rs

1//! Isogeny computations between elliptic curves.
2//!
3//! This crate provides algorithms for computing isogenies, their kernels,
4//! and the induced maps on points.  It is built on top of:
5//!   * `fp`  – finite field arithmetic
6//!   * `ec`  – elliptic curve group law
7
8pub mod isogeny;
9pub mod kernel;