1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
use crate::{
edwards_bls12::{Fq, Fr},
errors::GroupError,
templates::twisted_edwards_extended::{Affine, Projective},
traits::{AffineCurve, ModelParameters, MontgomeryParameters, TwistedEdwardsParameters},
};
use snarkvm_fields::field;
use snarkvm_utilities::biginteger::BigInteger256;
use std::str::FromStr;
pub type EdwardsAffine = Affine<EdwardsParameters>;
pub type EdwardsProjective = Projective<EdwardsParameters>;
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
pub struct EdwardsParameters;
impl ModelParameters for EdwardsParameters {
type BaseField = Fq;
type ScalarField = Fr;
}
impl TwistedEdwardsParameters for EdwardsParameters {
type MontgomeryParameters = EdwardsParameters;
const AFFINE_GENERATOR_COEFFS: (Self::BaseField, Self::BaseField) = (GENERATOR_X, GENERATOR_Y);
const COFACTOR: &'static [u64] = &[4];
const COFACTOR_INV: Fr = field!(
Fr,
BigInteger256([10836190823041854989, 14880086764632731920, 5023208332782666747, 239524813690824359,])
);
const EDWARDS_A: Fq =
field!(Fq, BigInteger256([0x8cf500000000000e, 0xe75281ef6000000e, 0x49dc37a90b0ba012, 0x55f8b2c6e710ab9,]));
const EDWARDS_D: Fq =
field!(Fq, BigInteger256([0xd047ffffffff5e30, 0xf0a91026ffff57d2, 0x9013f560d102582, 0x9fd242ca7be5700,]));
#[inline(always)]
fn mul_by_a(elem: &Self::BaseField) -> Self::BaseField {
-*elem
}
}
impl MontgomeryParameters for EdwardsParameters {
type TwistedEdwardsParameters = EdwardsParameters;
const MONTGOMERY_A: Fq = field!(
Fq,
BigInteger256([
13800168384327121454u64,
6841573379969807446u64,
12529593083398462246u64,
853978956621483129u64,
])
);
const MONTGOMERY_B: Fq = field!(
Fq,
BigInteger256([
7239382437352637935u64,
14509846070439283655u64,
5083066350480839936u64,
1265663645916442191u64,
])
);
}
impl FromStr for EdwardsAffine {
type Err = GroupError;
fn from_str(mut s: &str) -> Result<Self, Self::Err> {
s = s.trim();
if s.is_empty() {
return Err(GroupError::ParsingEmptyString);
}
if s.len() < 3 {
return Err(GroupError::InvalidString);
}
if !(s.starts_with('(') && s.ends_with(')')) {
return Err(GroupError::InvalidString);
}
let mut point = Vec::new();
for substr in s.split(|c| c == '(' || c == ')' || c == ',' || c == ' ') {
if !substr.is_empty() {
point.push(Fq::from_str(substr)?);
}
}
if point.len() != 2 {
return Err(GroupError::InvalidGroupElement);
}
let point = EdwardsAffine::new(point[0], point[1], point[0] * point[1]);
if !point.is_on_curve() { Err(GroupError::InvalidGroupElement) } else { Ok(point) }
}
}
const GENERATOR_X: Fq =
field!(Fq, BigInteger256([15976313411695170452, 17230178952810798400, 11626259175167078036, 678729006091608048]));
const GENERATOR_Y: Fq =
field!(Fq, BigInteger256([926786653590077393, 18147000980977651608, 13077459464847727671, 1231472949076376191]));