You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Weikeng Chen f74378c017
Add serialization for CP6-782 (#120)
2 years ago
.github Reduce CI time by parallelizing per-curve tests (#52) 3 years ago
bls12_377 Fix Bandersnatch parameters and the constraint tests (#119) 2 years ago
bls12_381 Sync with the recent changes in ark-algebra on pairing and testing (#116) 2 years ago
bn254 Sync with the recent changes in ark-algebra on pairing and testing (#116) 2 years ago
bw6_761 Sync with the recent changes in ark-algebra on pairing and testing (#116) 2 years ago
cp6_782 Add serialization for CP6-782 (#120) 2 years ago
curve-benches Sync with the recent changes in ark-algebra on pairing and testing (#116) 2 years ago
curve-constraint-tests Fix the remaining curve and field tests (#118) 2 years ago
ed_on_bls12_377 Fix the remaining curve and field tests (#118) 2 years ago
ed_on_bls12_381 Fix the remaining curve and field tests (#118) 2 years ago
ed_on_bls12_381_bandersnatch Fix Bandersnatch parameters and the constraint tests (#119) 2 years ago
ed_on_bn254 Fix the remaining curve and field tests (#118) 2 years ago
ed_on_bw6_761 Sync with the recent changes in ark-algebra on pairing and testing (#116) 2 years ago
ed_on_cp6_782 Fix the remaining curve and field tests (#118) 2 years ago
ed_on_mnt4_298 Fix the remaining curve and field tests (#118) 2 years ago
ed_on_mnt4_753 Fix the remaining curve and field tests (#118) 2 years ago
mnt4_298 Fix Bandersnatch parameters and the constraint tests (#119) 2 years ago
mnt4_753 Fix Bandersnatch parameters and the constraint tests (#119) 2 years ago
mnt6_298 Fix Bandersnatch parameters and the constraint tests (#119) 2 years ago
mnt6_753 Fix Bandersnatch parameters and the constraint tests (#119) 2 years ago
pallas Fix the remaining curve and field tests (#118) 2 years ago
scripts Linkify changelog (#46) 3 years ago
vesta Fix the remaining curve and field tests (#118) 2 years ago
.gitignore Initial commit 4 years ago
CHANGELOG.md `QUADRATIC_NONRESIDUE` is never used, remove (#104) 2 years ago
CONTRIBUTING.md Add Changelog and contributing file (#31) 3 years ago
Cargo.toml Sync with the recent changes in ark-algebra on pairing and testing (#116) 2 years ago
LICENSE-APACHE Initial commit 4 years ago
LICENSE-MIT Initial commit 4 years ago
README.md Implement the Bandersnatch curve (#64) 3 years ago
rustfmt.toml Upgrade to work with latest `ark-ff` (#95) 2 years ago

README.md

Curve implementations

This repository contains implementations of some popular elliptic curves. The curve API implemented here matches the curve traits defined here in the arkworks-rs/algebra repository.

BLS12-381 and embedded curves

  • ark-bls12-377: Implements the BLS12-377 pairing-friendly curve

  • ark-ed-on-bls12-377: Implements a Twisted Edwards curve atop the scalar field of BLS12-377

  • ark-bw6-761: Implements the BW6-761 pairing-friendly curve, which is a curve whose scalar field equals the base field of BLS12-377

  • ark-ed-on-bw6-761: Implements a Twisted Edwards curve atop the scalar field of BW6-761

  • ark-cp6-782: Implements the CP6-782 pairing-friendly curve, which is a curve whose scalar field equals the base field of BLS12-377

  • ark-ed-on-cp6-782: Implements a Twisted Edwards curve atop the scalar field of CP6-782. This is the same curve as in ark-ed-on-bw6-761

  • ark-bn254: Implements the BN254 pairing-friendly curve
  • ark-ed-on-bn254: Implements a Twisted Edwards curve atop the scalar field of BN254
  • ark-mnt4-298: Implements the MNT4-298 pairing-friendly curve. This curve forms a pairing-friendly cycle with MNT6-298
  • ark-mnt6-298: Implements the MNT6-298 pairing-friendly curve. This curve forms a pairing-friendly cycle with MNT4-298
  • ark-ed-on-mnt4-298: Implements a Twisted Edwards curve atop the scalar field of MNT4-298
  • ark-mnt4-753: Implements the MNT4-753 pairing-friendly curve. This curve forms a pairing-friendly cycle with MNT6-753
  • ark-mnt6-753: Implements the MNT6-753 pairing-friendly curve. This curve forms a pairing-friendly cycle with MNT4-753
  • ark-ed-on-mnt4-753: Implements a Twisted Edwards curve atop the scalar field of MNT4-753

Pasta cycle of curves

  • ark-pallas: Implements Pallas, a prime-order curve that forms an amicable pair with Vesta
  • ark-vesta: Implements Vesta, a prime-order curve that forms an amicable pair with Pallas