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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
use crate::{
edwards_bls12::{Fq, Fr},
templates::twisted_edwards_extended::{GroupAffine, GroupProjective},
};
use snarkvm_errors::curves::GroupError;
use snarkvm_models::{
curves::{ModelParameters, MontgomeryModelParameters, TEModelParameters},
field,
};
use snarkvm_utilities::biginteger::BigInteger256;
use std::str::FromStr;
pub type EdwardsAffine = GroupAffine<EdwardsParameters>;
pub type EdwardsProjective = GroupProjective<EdwardsParameters>;
#[derive(Clone, Default, PartialEq, Eq)]
pub struct EdwardsParameters;
impl ModelParameters for EdwardsParameters {
type BaseField = Fq;
type ScalarField = Fr;
}
impl TEModelParameters for EdwardsParameters {
type MontgomeryModelParameters = EdwardsParameters;
const AFFINE_GENERATOR_COEFFS: (Self::BaseField, Self::BaseField) = (GENERATOR_X, GENERATOR_Y);
const COEFF_A: Fq = field!(
Fq,
BigInteger256([
0x8cf500000000000e,
0xe75281ef6000000e,
0x49dc37a90b0ba012,
0x55f8b2c6e710ab9,
])
);
const COEFF_D: Fq = field!(
Fq,
BigInteger256([
0xd047ffffffff5e30,
0xf0a91026ffff57d2,
0x9013f560d102582,
0x9fd242ca7be5700,
])
);
const COFACTOR: &'static [u64] = &[4];
const COFACTOR_INV: Fr = field!(
Fr,
BigInteger256([
10836190823041854989,
14880086764632731920,
5023208332782666747,
239524813690824359,
])
);
#[inline(always)]
fn mul_by_a(elem: &Self::BaseField) -> Self::BaseField {
-*elem
}
}
impl MontgomeryModelParameters for EdwardsParameters {
type TEModelParameters = EdwardsParameters;
const COEFF_A: Fq = field!(
Fq,
BigInteger256([
13800168384327121454u64,
6841573379969807446u64,
12529593083398462246u64,
853978956621483129u64,
])
);
const COEFF_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]);
if !point.is_on_curve() {
Err(GroupError::InvalidGroupElement)
} else {
Ok(point)
}
}
}
const GENERATOR_X: Fq = field!(
Fq,
BigInteger256([
0x5bbc9878d817221d,
0xd2b03489424e720,
0x6b66f128c16bb3c9,
0xdd3bff78733576d,
])
);
const GENERATOR_Y: Fq = field!(
Fq,
BigInteger256([
0x471517ae5e5e979e,
0xd9c97f6a73a7ff83,
0x85a95b45a5494402,
0xfad27c9b545b1f0,
])
);