* release * update CHANGELOG.md
@ -1,7 +1,21 @@
## Pending
# CHANGELOG
### Breaking changes
### Features
### Improvements
### Bug fixes
## v0.3.0
- [\#60](https://github.com/arkworks-rs/curves/pull/60) Change the scalar group generator of `Fr` of `bls12_377` Fr from `11` to `22`.
- [\#61](https://github.com/arkworks-rs/curves/pull/61) Remove `ATE_LOOP_COUNT_IS_NEGATIVE` from BN254 curve parameter.
@ -12,9 +26,11 @@
## v0.2.0
- Requires all crates from `arkworks-rs/algebra` to have version `v0.2.0` or greater.
- [\#3](https://github.com/arkworks-rs/curves/pull/3) Add constraints for
`ark-bls12-377`,
`ark-ed-on-bls12-377`,
@ -33,9 +49,11 @@
- [\#53](https://github.com/arkworks-rs/curves/pull/53) Add benchmarks for Pallas and Vesta curves.
- [\#42](https://github.com/arkworks-rs/curves/pull/42) Remove the dependency of `rand_xorshift`.
- [\#28](https://github.com/arkworks-rs/curves/pull/28), [\#49](https://github.com/arkworks-rs/curves/pull/49) Fix broken documentation links.
- [\#38](https://github.com/arkworks-rs/curves/pull/38) Compile with `panic='abort'` in release mode, for safety of the library across FFI boundaries.
- [\#45](https://github.com/arkworks-rs/curves/pull/45) Fix `ark-ed-on-mnt4-753`.
@ -1,6 +1,6 @@
[package]
name = "ark-bls12-377"
version = "0.2.0"
version = "0.3.0"
authors = [ "arkworks contributors" ]
description = "The BLS12-377 pairing-friendly elliptic curve"
homepage = "https://arkworks.rs"
@ -13,16 +13,16 @@ license = "MIT/Apache-2.0"
edition = "2018"
[dependencies]
ark-ff = { version="^0.2.0", default-features = false }
ark-ec = { version="^0.2.0", default-features = false }
ark-r1cs-std = { version="^0.2.0", default-features = false, optional = true }
ark-std = { version="^0.2.0", default-features = false }
ark-ff = { version="^0.3.0", default-features = false }
ark-ec = { version="^0.3.0", default-features = false }
ark-r1cs-std = { version="^0.3.0", default-features = false, optional = true }
ark-std = { version="^0.3.0", default-features = false }
[dev-dependencies]
ark-relations = { version="^0.2.0", default-features = false }
ark-serialize = { version="^0.2.0", default-features = false }
ark-algebra-test-templates = { version="^0.2.0", default-features = false }
ark-curve-constraint-tests = { version="^0.2.0", path = "../curve-constraint-tests", default-features = false }
ark-relations = { version="^0.3.0", default-features = false }
ark-serialize = { version="^0.3.0", default-features = false }
ark-algebra-test-templates = { version="^0.3.0", default-features = false }
ark-curve-constraint-tests = { path = "../curve-constraint-tests", default-features = false }
[features]
default = [ "curve" ]
name = "ark-bls12-381"
description = "The BLS12-381 pairing-friendly elliptic curve"
@ -13,13 +13,13 @@ license = "MIT/Apache-2.0"
name = "ark-bn254"
description = "The BN254 pairing-friendly elliptic curve"
@ -21,8 +21,6 @@ impl BnParameters for Parameters {
0, 1, 1, 1, 0, 0, -1, 0, 0, 1, 0, 0, 0, 0, 0, -1, 0, 0, 1, 1, 0, 0, -1, 0, 0, 0, 1, 1, 0,
-1, 0, 0, 1, 0, 1, 1,
];
/// `ate_loop_count` is positive.
const ATE_LOOP_COUNT_IS_NEGATIVE: bool = false;
const TWIST_MUL_BY_Q_X: Fq2 = field_new!(
Fq2,
name = "ark-bw6-761"
description = "The BW6-761 pairing-friendly elliptic curve"
@ -13,14 +13,14 @@ license = "MIT/Apache-2.0"
ark-bls12-377 = { version="^0.2.0", path = "../bls12_377", default-features = false, features = [ "base_field" ] }
ark-bls12-377 = { version="^0.3.0", path = "../bls12_377", default-features = false, features = [ "base_field" ] }
default = []
name = "ark-cp6-782"
description = "The CP6-782 pairing-friendly elliptic curve"
ark-ff = { version = "^0.2.0", default-features = false }
ark-ec = { version = "^0.2.0", default-features = false }
ark-std = { version = "^0.2.0", default-features = false }
ark-bls12-377 = { version = "^0.2.0", path = "../bls12_377", default-features = false, features = [ "base_field" ] }
ark-ff = { version = "^0.3.0", default-features = false }
ark-ec = { version = "^0.3.0", default-features = false }
ark-std = { version = "^0.3.0", default-features = false }
ark-bls12-377 = { version = "^0.3.0", path = "../bls12_377", default-features = false, features = [ "base_field" ] }
ark-serialize = { version = "^0.2.0", default-features = false }
ark-algebra-test-templates = { version = "^0.2.0", default-features = false }
ark-serialize = { version = "^0.3.0", default-features = false }
ark-algebra-test-templates = { version = "^0.3.0", default-features = false }
name = "ark-curve-benches"
authors = [
"Sean Bowe",
"Alessandro Chiesa",
@ -28,10 +28,10 @@ build = "build.rs"
bencher = { version = "0.1.5" }
ark-mnt4-298 = { path = "../mnt4_298" }
ark-mnt6-298 = { path = "../mnt6_298" }
name = "ark-curve-constraint-tests"
description = "A library for testing constraints for finite fields, elliptic curves, and pairings"
@ -13,12 +13,12 @@ license = "MIT/Apache-2.0"
ark-relations = { version = "^0.2.0", default-features = false }
ark-r1cs-std = { version = "^0.2.0", default-features = false }
ark-relations = { version = "^0.3.0", default-features = false }
ark-r1cs-std = { version = "^0.3.0", default-features = false }
name = "ark-ed-on-bls12-377"
description = "A Twisted Edwards curve defined over the scalar field of the BLS12-377 curve"
ark-r1cs-std = { version = "^0.2.0", default-features = false, optional = true }
ark-bls12-377 = { version = "^0.2.0", path = "../bls12_377", default-features = false, features = [ "scalar_field" ] }
ark-r1cs-std = { version = "^0.3.0", default-features = false, optional = true }
ark-bls12-377 = { version = "^0.3.0", path = "../bls12_377", default-features = false, features = [ "scalar_field" ] }
name = "ark-ed-on-bls12-381"
description = "A Twisted Edwards curve defined over the scalar field of the BLS12-381 curve"
ark-bls12-381 = { version = "^0.2.0", path = "../bls12_381", default-features = false, features = [ "scalar_field" ] }
ark-bls12-381 = { version = "^0.3.0", path = "../bls12_381", default-features = false, features = [ "scalar_field" ] }
name = "ark-ed-on-bn254"
description = "A Twisted Edwards curve defined over the scalar field of the BN254 curve"
ark-bn254 = { version = "^0.2.0", path = "../bn254", default-features = false, features = [ "scalar_field" ] }
ark-bn254 = { version = "^0.3.0", path = "../bn254", default-features = false, features = [ "scalar_field" ] }
name = "ark-ed-on-bw6-761"
description = "A Twisted Edwards curve defined over the scalar field of the BW6-761 curve"
ark-ed-on-cp6-782 = { version = "^0.2.0", path = "../ed_on_cp6_782", default-features = false }
ark-ed-on-cp6-782 = { version = "^0.3.0", path = "../ed_on_cp6_782", default-features = false }
name = "ark-ed-on-cp6-782"
description = "A Twisted Edwards curve defined over the scalar field of the CP6-782 curve"
name = "ark-ed-on-mnt4-298"
description = "A Twisted Edwards curve defined over the scalar field of the MNT4-298 curve"
ark-mnt4-298 = { version = "^0.2.0", path = "../mnt4_298", default-features = false, features = [ "scalar_field" ] }
ark-mnt4-298 = { version = "^0.3.0", path = "../mnt4_298", default-features = false, features = [ "scalar_field" ] }
name = "ark-ed-on-mnt4-753"
description = "A Twisted Edwards curve defined over the scalar field of the MNT4-753 curve"
ark-mnt4-753 = { version = "^0.2.0", path = "../mnt4_753", default-features = false, features = [ "scalar_field" ] }
ark-mnt4-753 = { version = "^0.3.0", path = "../mnt4_753", default-features = false, features = [ "scalar_field" ] }
name = "ark-mnt4-298"
description = "The MNT4-298 pairing-friendly elliptic curve"
@ -13,15 +13,15 @@ license = "MIT/Apache-2.0"
name = "ark-mnt4-753"
description = "The MNT4-753 pairing-friendly elliptic curve"
name = "ark-mnt6-298"
description = "The MNT6-298 pairing-friendly elliptic curve"
ark-mnt4-298 = { version = "^0.2.0", path = "../mnt4_298", default-features = false, features = [ "scalar_field", "base_field" ] }
ark-mnt4-298 = { version = "^0.3.0", path = "../mnt4_298", default-features = false, features = [ "scalar_field", "base_field" ] }
name = "ark-mnt6-753"
description = "The MNT6-753 pairing-friendly elliptic curve"
ark-mnt4-753 = { version = "^0.2.0", path = "../mnt4_753", default-features = false, features = [ "scalar_field", "base_field" ] }
ark-mnt4-753 = { version = "^0.3.0", path = "../mnt4_753", default-features = false, features = [ "scalar_field", "base_field" ] }
name = "ark-pallas"
authors = [ "Ying Tong Lai", "Daira Hopwood", "O(1) Labs", "arkworks contributors" ]
description = "The Pallas prime-order elliptic curve"
name = "ark-vesta"
description = "The Vesta prime-order elliptic curve"
ark-pallas = { version = "^0.2.0", path = "../pallas", default-features = false, features = [ "scalar_field", "base_field" ] }
ark-pallas = { version = "^0.3.0", path = "../pallas", default-features = false, features = [ "scalar_field", "base_field" ] }