Merge branch 'master' into releases

This commit is contained in:
mmagician
2023-01-17 12:31:54 +01:00
53 changed files with 2372 additions and 53 deletions

View File

@@ -43,10 +43,12 @@ impl SWCurveConfig for Config {
}
}
/// G_GENERATOR_X = 53718550993811904772965658690407829053653678808745171666022356150019200052646
/// G_GENERATOR_X =
/// 53718550993811904772965658690407829053653678808745171666022356150019200052646
pub const G_GENERATOR_X: Fq =
MontFp!("53718550993811904772965658690407829053653678808745171666022356150019200052646");
/// G_GENERATOR_Y = 28941648020349172432234515805717979317553499307621291159490218670604692907903
/// G_GENERATOR_Y =
/// 28941648020349172432234515805717979317553499307621291159490218670604692907903
pub const G_GENERATOR_Y: Fq =
MontFp!("28941648020349172432234515805717979317553499307621291159490218670604692907903");

View File

@@ -1,2 +1 @@
pub use ark_secp256k1::Fr as Fq;
pub use ark_secp256k1::FrConfig as FqConfig;
pub use ark_secp256k1::{Fr as Fq, FrConfig as FqConfig};

View File

@@ -1,2 +1 @@
pub use ark_secp256k1::Fq as Fr;
pub use ark_secp256k1::FqConfig as FrConfig;
pub use ark_secp256k1::{Fq as Fr, FqConfig as FrConfig};