ark-tom256 0.1.4

The Tom-256 curve
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::{constraints::FqVar, *};
use ark_r1cs_std::groups::curves::short_weierstrass::ProjectiveVar;

/// A group element in the Tom256 curve.
pub type GVar = ProjectiveVar<Config, FqVar>;

#[test]
fn test() {
    ark_curve_constraint_tests::curves::sw_test::<Config, GVar>().unwrap();
}