ark-ed25519 0.6.0

The ed25519 twisted Edwards curve
Documentation
1
2
3
4
5
6
7
8
9
10
11
use ark_r1cs_std::groups::curves::twisted_edwards::AffineVar;

use crate::{constraints::FqVar, *};

/// A variable that is the R1CS equivalent of `crate::EdwardsAffine`.
pub type EdwardsVar = AffineVar<EdwardsConfig, FqVar>;

#[test]
fn test() {
    ark_curve_constraint_tests::curves::te_test::<EdwardsConfig, EdwardsVar>().unwrap();
}