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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
use crate::ff::*;
use crate::*;
use std::fmt;

/// Projective representation of an elliptic curve point guaranteed to be
/// in the correct prime order subgroup.
pub trait GenericCurveProjective:
    PartialEq
    + Eq
    + Sized
    + Copy
    + Clone
    + Send
    + Sync
    + fmt::Debug
    + fmt::Display
    + rand::Rand
    + 'static
{
    type Scalar: PrimeField;
    type Base: SqrtField;
    type Affine: GenericCurveAffine<Projective = Self, Scalar = Self::Scalar, Base = Self::Base>;

    /// Returns the additive identity.
    fn zero() -> Self;

    /// Returns a fixed generator of unknown exponent.
    fn one() -> Self;

    /// Determines if this point is the point at infinity.
    fn is_zero(&self) -> bool;

    /// Normalizes a slice of projective elements so that
    /// conversion to affine is cheap.
    fn batch_normalization(v: &mut [Self]);

    /// Checks if the point is already "normalized" so that
    /// cheap affine conversion is possible.
    fn is_normalized(&self) -> bool;

    /// Doubles this element.
    fn double(&mut self);

    /// Adds another element to this element.
    fn add_assign(&mut self, other: &Self);

    /// Subtracts another element from this element.
    fn sub_assign(&mut self, other: &Self) {
        let mut tmp = *other;
        tmp.negate();
        self.add_assign(&tmp);
    }

    /// Adds an affine element to this element.
    fn add_assign_mixed(&mut self, other: &Self::Affine);

    /// Negates this element.
    fn negate(&mut self);

    /// Performs scalar multiplication of this element.
    fn mul_assign<S: Into<<Self::Scalar as PrimeField>::Repr>>(&mut self, other: S);

    /// Converts this element into its affine representation.
    fn into_affine(&self) -> Self::Affine;

    /// Recommends a wNAF window table size given a scalar. Always returns a number
    /// between 2 and 22, inclusive.
    fn recommended_wnaf_for_scalar(scalar: <Self::Scalar as PrimeField>::Repr) -> usize;

    /// Recommends a wNAF window size given the number of scalars you intend to multiply
    /// a base by. Always returns a number between 2 and 22, inclusive.
    fn recommended_wnaf_for_num_scalars(num_scalars: usize) -> usize;

    /// Returns references to underlying X, Y and Z coordinates. Users should check for infinity
    /// outside of this call
    fn as_xyz(&self) -> (&Self::Base, &Self::Base, &Self::Base) {
        unimplemented!("default implementation does not exist for this function")
    }
    
    /// Returns underlying X, Y and Z coordinates. Users should check for infinity
    /// outside of this call
    fn into_xyz_unchecked(self) -> (Self::Base, Self::Base, Self::Base) {
        unimplemented!("default implementation does not exist for this function")
    }

    /// Creates a point from raw X, Y and Z coordinates. Point of infinity is encoded as (0,1,0) by default.
    /// On-curve check is NOT performed
    fn from_xyz_unchecked(_x: Self::Base, _y: Self::Base, _z: Self::Base) -> Self {
        unimplemented!("default implementation does not exist for this function")
    }

    /// Creates a point from raw X, Y and Z coordinates. Point of infinity is encoded as (0,1,0) by default.
    /// On-curve check is performed
    fn from_xyz_checked(_x: Self::Base, _y: Self::Base, _z: Self::Base) -> Result<Self, GroupDecodingError> {
        unimplemented!("default implementation does not exist for this function")
    }
}

/// Affine representation of an elliptic curve point guaranteed to be
/// in the correct prime order subgroup.
pub trait GenericCurveAffine:
    Copy + Clone + Sized + Send + Sync + fmt::Debug + fmt::Display + PartialEq + Eq + 'static
{
    type Scalar: PrimeField;
    type Base: SqrtField;
    type Projective: GenericCurveProjective<Affine = Self, Scalar = Self::Scalar, Base = Self::Base>;

    /// Returns the additive identity.
    fn zero() -> Self;

    /// Returns a fixed generator of unknown exponent.
    fn one() -> Self;

    /// Determines if this point represents the point at infinity; the
    /// additive identity.
    fn is_zero(&self) -> bool;

    /// Negates this element.
    fn negate(&mut self);

    /// Performs scalar multiplication of this element with mixed addition.
    fn mul<S: Into<<Self::Scalar as PrimeField>::Repr>>(&self, other: S) -> Self::Projective;

    /// Converts this element into its affine representation.
    fn into_projective(&self) -> Self::Projective;

    /// Returns references to underlying X and Y coordinates. Users should check for infinity
    /// outside of this call
    fn as_xy(&self) -> (&Self::Base, &Self::Base);
    
    /// Returns underlying X and Y coordinates. Users should check for infinity
    /// outside of this call
    fn into_xy_unchecked(self) -> (Self::Base, Self::Base);

    /// Creates a point from raw X and Y coordinates. Point of infinity is encoded as (0,0) by default.
    /// On-curve check is NOT performed
    fn from_xy_unchecked(x: Self::Base, y: Self::Base) -> Self;

    /// Creates a point from raw X and Y coordinates. Point of infinity is encoded as (0,0) by default.
    /// On-curve check is performed
    fn from_xy_checked(x: Self::Base, y: Self::Base) -> Result<Self, GroupDecodingError>;

    /// returns A coefficient for a short Weierstrass form
    fn a_coeff() -> Self::Base;

    /// returns B coefficient for a short Weierstrass form
    fn b_coeff() -> Self::Base;
}
pub trait GenericUncompressedEncodable<const N: usize>: GenericCurveAffine {
    /// Converts this element into its uncompressed encoding, so long as it's not
    /// the point at infinity.
    fn into_uncompressed(&self) -> EncodingBytes<Self, N>;

    /// Converts an uncompressed encoding into the curve point
    fn from_uncompressed(encoding: EncodingBytes<Self, N>) -> Result<Self, GroupDecodingError>;
}
pub trait GenericCompressedEncodable<const N: usize>: GenericCurveAffine {
    /// Converts this element into its uncompressed encoding, so long as it's not
    /// the point at infinity.
    fn into_compressed(&self) -> (EncodingBytes<Self, N>, bool);

    /// Converts an uncompressed encoding into the curve point
    fn from_compressed(encoding: EncodingBytes<Self, N>, parity: bool) -> Result<Self, GroupDecodingError>;
}
pub trait GenericRawEncodable<const N: usize>: GenericUncompressedEncodable<N> {
    /// Converts this element into its uncompressed encoding, so long as it's not
    /// the point at infinity. Leaves coordinates in Montgommery form
    fn into_raw_uncompressed_le(&self) -> [u8; N];

    /// Creates a point from raw encoded coordinates without checking on curve
    fn from_raw_uncompressed_le_unchecked(encoded: &[u8; N], infinity: bool) -> Result<Self, GroupDecodingError>;

    /// Creates a point from raw encoded coordinates
    fn from_raw_uncompressed_le(encoded: &[u8; N], infinity: bool) -> Result<Self, GroupDecodingError>;
}

#[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
pub struct EncodingBytes<G: GenericCurveAffine, const N: usize>{
    bytes: [u8; N],
    _marker: std::marker::PhantomData<G>
}

impl<G: GenericCurveAffine, const N: usize> AsRef<[u8]> for EncodingBytes<G, N> {
    fn as_ref(&self) -> &[u8] {
        &self.bytes[..]
    }
}

impl<G: GenericCurveAffine, const N: usize> AsMut<[u8]> for EncodingBytes<G, N> {
    fn as_mut(&mut self) -> &mut [u8] {
        &mut self.bytes[..]
    }
}

impl<G: GenericCurveAffine, const N: usize> EncodingBytes<G, N> {
    /// Creates an empty representation.
    pub fn empty() -> Self {
        Self {
            bytes: [0u8; N],
            _marker: std::marker::PhantomData
        }
    }

    /// Returns the number of bytes consumed by this representation.
    pub fn size() -> usize {
        N
    }

    /// Transforms into raw bytes without a type marker
    pub fn into_bytes(self) -> [u8; N] {
        self.bytes
    }

    /// Transforms from raw bytes by adding a type marker
    pub fn from_bytes(bytes: [u8; N]) -> Self {
        Self {
            bytes,
            _marker: std::marker::PhantomData
        }
    }
}

impl<G: CurveAffine> GenericCurveAffine for G {
    type Scalar = <Self as CurveAffine>::Scalar;
    type Base = <Self as CurveAffine>::Base;
    type Projective = <Self as CurveAffine>::Projective;

    /// Returns the additive identity.
    fn zero() -> Self {
        <Self as CurveAffine>::zero()
    }

    /// Returns a fixed generator of unknown exponent.
    fn one() -> Self {
        <Self as CurveAffine>::one()
    }

    /// Determines if this point is the point at infinity.
    fn is_zero(&self) -> bool {
        <Self as CurveAffine>::is_zero(&self)
    }

    /// Negates this element.
    fn negate(&mut self) {
        <Self as CurveAffine>::negate(self)
    }

    /// Performs scalar multiplication of this element with mixed addition.
    fn mul<S: Into<<Self::Scalar as PrimeField>::Repr>>(&self, other: S) -> Self::Projective {
        <Self as CurveAffine>::mul(self, other)
    }

    /// Converts this element into its affine representation.
    fn into_projective(&self) -> Self::Projective {
        <Self as CurveAffine>::into_projective(&self)
    }

    /// Returns references to underlying X and Y coordinates. Users should check for infinity
    /// outside of this call
    fn as_xy(&self) -> (&Self::Base, &Self::Base) {
        <Self as CurveAffine>::as_xy(&self)
    }
    
    /// Returns underlying X and Y coordinates. Users should check for infinity
    /// outside of this call
    fn into_xy_unchecked(self) -> (Self::Base, Self::Base) {
        <Self as CurveAffine>::into_xy_unchecked(self)
    }

    /// Creates a point from raw X and Y coordinates. Point of infinity is encoded as (0,0) by default.
    /// On-curve check is NOT performed
    fn from_xy_unchecked(x: Self::Base, y: Self::Base) -> Self {
        <Self as CurveAffine>::from_xy_unchecked(x, y)
    }

    /// Creates a point from raw X and Y coordinates. Point of infinity is encoded as (0,0) by default.
    /// On-curve check is performed
    fn from_xy_checked(x: Self::Base, y: Self::Base) -> Result<Self, GroupDecodingError> {
        <Self as CurveAffine>::from_xy_checked(x, y)
    }

    /// returns A coefficient for a short Weierstrass form
    fn a_coeff() -> Self::Base {
        <Self as CurveAffine>::a_coeff()
    }

    /// returns B coefficient for a short Weierstrass form
    fn b_coeff() -> Self::Base {
        <Self as CurveAffine>::b_coeff()
    }
}

impl<G: CurveProjective> GenericCurveProjective for G {
    type Scalar = <Self as CurveProjective>::Scalar;
    type Base = <Self as CurveProjective>::Base;
    type Affine = <Self as CurveProjective>::Affine;

    /// Returns the additive identity.
    fn zero() -> Self {
        <Self as CurveProjective>::zero()
    }

    /// Returns a fixed generator of unknown exponent.
    fn one() -> Self {
        <Self as CurveProjective>::one()
    }

    /// Determines if this point is the point at infinity.
    fn is_zero(&self) -> bool {
        <Self as CurveProjective>::is_zero(&self)
    }

    /// Normalizes a slice of projective elements so that
    /// conversion to affine is cheap.
    fn batch_normalization(v: &mut [Self]){
        <Self as CurveProjective>::batch_normalization(v)
    }

    /// Checks if the point is already "normalized" so that
    /// cheap affine conversion is possible.
    fn is_normalized(&self) -> bool {
        <Self as CurveProjective>::is_normalized(&self)
    }

    /// Doubles this element.
    fn double(&mut self) {
        <Self as CurveProjective>::double(self)
    }

    /// Adds another element to this element.
    fn add_assign(&mut self, other: &Self) {
        <Self as CurveProjective>::add_assign(self, other)
    }

    /// Subtracts another element from this element.
    fn sub_assign(&mut self, other: &Self) {
        <Self as CurveProjective>::sub_assign(self, other)
    }

    /// Adds an affine element to this element.
    fn add_assign_mixed(&mut self, other: &Self::Affine) {
        <Self as CurveProjective>::add_assign_mixed(self, other);
    }

    /// Negates this element.
    fn negate(&mut self) {
        <Self as CurveProjective>::negate(self);
    }

    /// Performs scalar multiplication of this element.
    fn mul_assign<S: Into<<Self::Scalar as PrimeField>::Repr>>(&mut self, other: S) {
        <Self as CurveProjective>::mul_assign(self, other);
    }

    /// Converts this element into its affine representation.
    fn into_affine(&self) -> Self::Affine {
        <Self as CurveProjective>::into_affine(self)
    }

    /// Recommends a wNAF window table size given a scalar. Always returns a number
    /// between 2 and 22, inclusive.
    fn recommended_wnaf_for_scalar(scalar: <Self::Scalar as PrimeField>::Repr) -> usize {
        <Self as CurveProjective>::recommended_wnaf_for_scalar(scalar)
    }

    /// Recommends a wNAF window size given the number of scalars you intend to multiply
    /// a base by. Always returns a number between 2 and 22, inclusive.
    fn recommended_wnaf_for_num_scalars(num_scalars: usize) -> usize {
        <Self as CurveProjective>::recommended_wnaf_for_num_scalars(num_scalars)
    }

    /// Returns references to underlying X, Y and Z coordinates. Users should check for infinity
    /// outside of this call
    fn as_xyz(&self) -> (&Self::Base, &Self::Base, &Self::Base) {
        <Self as CurveProjective>::as_xyz(self)
    }
    
    /// Returns underlying X, Y and Z coordinates. Users should check for infinity
    /// outside of this call
    fn into_xyz_unchecked(self) -> (Self::Base, Self::Base, Self::Base) {
        <Self as CurveProjective>::into_xyz_unchecked(self)
    }

    /// Creates a point from raw X, Y and Z coordinates. Point of infinity is encoded as (0,1,0) by default.
    /// On-curve check is NOT performed
    fn from_xyz_unchecked(_x: Self::Base, _y: Self::Base, _z: Self::Base) -> Self {
        <Self as CurveProjective>::from_xyz_unchecked(_x, _y, _z)
    }

    /// Creates a point from raw X, Y and Z coordinates. Point of infinity is encoded as (0,1,0) by default.
    /// On-curve check is performed
    fn from_xyz_checked(_x: Self::Base, _y: Self::Base, _z: Self::Base) -> Result<Self, GroupDecodingError> {
        <Self as CurveProjective>::from_xyz_checked(_x, _y, _z)
    }
}