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.
|
use ark_algebra_test_templates::curves::*;
|
|
use ark_ec::AffineCurve;
|
|
|
|
use crate::*;
|
|
|
|
#[test]
|
|
fn test_generator() {
|
|
let generator = EdwardsAffine::prime_subgroup_generator();
|
|
assert!(generator.is_on_curve());
|
|
assert!(generator.is_in_correct_subgroup_assuming_on_curve());
|
|
}
|
|
|
|
#[test]
|
|
fn test_montgomery_conversion() {
|
|
montgomery_conversion_test::<EdwardsParameters>();
|
|
}
|