ark_vesta_ext/
lib.rs

1//! This library implements the prime-order curve Vesta, generated by
2//! [Daira Hopwood](https://github.com/zcash/pasta). The main feature of this
3//! curve is that it forms a cycle with Pallas, i.e. its scalar field and base
4//! field respectively are the base field and scalar field of Pallas.
5//!
6//!
7//! Curve information:
8//! Vesta:
9//! * Base field: q =
10//!   28948022309329048855892746252171976963363056481941647379679742748393362948097
11//! * Scalar field: r =
12//!   28948022309329048855892746252171976963363056481941560715954676764349967630337
13//! * Curve equation: y^2 = x^3 + 5
14//! * Valuation(q - 1, 2) = 32
15//! * Valuation(r - 1, 2) = 32
16
17#![cfg_attr(not(feature = "std"), no_std)]
18
19pub mod curves;
20
21pub use ark_vesta::{fq, fq::*, fr, fr::*};
22pub use curves::*;