mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-04 20:03:39 +00:00
13 lines
375 B
Rust
13 lines
375 B
Rust
//! The Pallas elliptic curve group.
|
|
|
|
/// A Pallas point in the projective coordinate space.
|
|
pub type Point = super::Ep;
|
|
|
|
/// A Pallas point in the affine coordinate space (or the point at infinity).
|
|
pub type Affine = super::EpAffine;
|
|
|
|
/// The base field of the Pallas group.
|
|
pub type Base = super::Fp;
|
|
|
|
/// The scalar field of the Pallas group.
|
|
pub type Scalar = super::Fq;
|