mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-04 20:03:39 +00:00
14 lines
370 B
Rust
14 lines
370 B
Rust
|
|
//! 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;
|