use crate::groups::curves::twisted_edwards::AffineGadget;
|
|
use algebra::edwards_on_cp6_782::*;
|
|
|
|
use crate::instantiated::edwards_on_cp6_782::FqGadget;
|
|
|
|
pub type EdwardsGadget = AffineGadget<EdwardsParameters, Fq, FqGadget>;
|
|
|
|
#[test]
|
|
fn test() {
|
|
crate::groups::curves::twisted_edwards::test::<_, EdwardsParameters, EdwardsGadget>();
|
|
}
|