From 42c02b17dff07ac5baf3c8445c631c39be39e3b5 Mon Sep 17 00:00:00 2001 From: arnaucube Date: Tue, 16 May 2023 16:07:18 +0200 Subject: [PATCH] expose pub curve parameters and generator --- src/lib.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index fc94f5e..e2e6ecc 100644 --- a/src/lib.rs +++ b/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();