Browse Source

expose pub curve parameters and generator

wasm-compat
arnaucube 1 year ago
parent
commit
42c02b17df
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      src/lib.rs

+ 7
- 7
src/lib.rs

@ -47,12 +47,12 @@ pub type Fr = Fp256>;
use lazy_static::lazy_static;
lazy_static! {
static ref D: Fq = Fq::from_str("168696").unwrap();
static ref D_BIG: BigInt = D.into_bigint();
static ref A: Fq = Fq::from_str("168700").unwrap();
static ref A_BIG: BigInt = A.into_bigint();
static ref Q: BigInt = Fq::MODULUS;
static ref B8: Point = Point {
pub static ref D: Fq = Fq::from_str("168696").unwrap();
pub static ref D_BIG: BigInt = D.into_bigint();
pub static ref A: Fq = Fq::from_str("168700").unwrap();
pub static ref A_BIG: BigInt = A.into_bigint();
pub static ref Q: BigInt = Fq::MODULUS;
pub static ref B8: Point = Point {
x: Fq::from_str(
"5299619240641551281634865583518297030282874472190772894086521144482721001553",
)
@ -62,7 +62,7 @@ lazy_static! {
)
.unwrap(),
};
static ref ORDER: Fq = Fq::from_str(
pub static ref ORDER: Fq = Fq::from_str(
"21888242871839275222246405745257275088614511777268538073601725287587578984328",
)
.unwrap();

Loading…
Cancel
Save