pasta_curves-source/src/pasta/vesta.rs

14 lines
370 B
Rust
Raw Normal View History

2020-12-03 20:45:13 +00:00
//! The Vesta elliptic curve group.
/// A Vesta point in the projective coordinate space.
pub type Point = super::Eq;
/// A Vesta point in the affine coordinate space (or the point at infinity).
pub type Affine = super::EqAffine;
/// The base field of the Vesta group.
pub type Base = super::Fq;
/// The scalar field of the Vesta group.
pub type Scalar = super::Fp;