forked from jackoelv/bellperson
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add blstrs and paired backends
- Loading branch information
1 parent
7b7a4a4
commit 118b481
Showing
39 changed files
with
300 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
nightly-2020-01-08 | ||
1.46.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#[cfg(feature = "blst")] | ||
pub use blstrs::{ | ||
Bls12, Engine, Fp as Fq, Fp12 as Fq12, Fp2 as Fq2, FpRepr as FqRepr, G1Affine, G1Compressed, | ||
G1Projective, G1Uncompressed, G2Affine, G2Compressed, G2Prepared, G2Projective, G2Uncompressed, | ||
PairingCurveAffine, Scalar as Fr, ScalarRepr as FrRepr, | ||
}; | ||
|
||
#[cfg(feature = "pairing")] | ||
pub use paired::{ | ||
bls12_381::{ | ||
Bls12, Fq, Fq12, Fq2, FqRepr, Fr, FrRepr, G1Affine, G1Compressed, G1Uncompressed, G2Affine, | ||
G2Compressed, G2Prepared, G2Uncompressed, G1 as G1Projective, G2 as G2Projective, | ||
}, | ||
Engine, PairingCurveAffine, | ||
}; |
Oops, something went wrong.