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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
|
/*
* Arithmetic for point groups of elliptic curves over GF(p)
*
* (C) 2007 Martin Doering, Christoph Ludwig, Falko Strenzke
* 2008-2010 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/point_gfp.h>
#include <botan/numthry.h>
namespace Botan {
namespace {
BigInt decompress_point(bool yMod2,
const BigInt& x,
const CurveGFp& curve)
{
BigInt xpow3 = x * x * x;
BigInt g = curve.get_a().get_value() * x;
g += xpow3;
g += curve.get_b().get_value();
g = g % curve.get_p();
BigInt z = ressol(g, curve.get_p());
if(z < 0)
throw Illegal_Point("error during decompression");
if(z.get_bit(0) != yMod2)
z = curve.get_p() - z;
return z;
}
}
// construct the point at infinity or a random point
PointGFp::PointGFp(const CurveGFp& curve) :
curve(curve),
point_x(curve.get_p(), 0),
point_y(curve.get_p(), 1),
point_z(curve.get_p(), 0)
{
}
// construct a point given its jacobian projective coordinates
PointGFp::PointGFp(const CurveGFp& curve,
const BigInt& x,
const BigInt& y,
const BigInt& z) :
curve(curve),
point_x(curve.get_p(), x),
point_y(curve.get_p(), y),
point_z(curve.get_p(), z)
{
}
PointGFp::PointGFp(const CurveGFp& curve,
const BigInt& x,
const BigInt& y) :
curve(curve),
point_x(curve.get_p(), x),
point_y(curve.get_p(), y),
point_z(curve.get_p(), 1)
{
}
// arithmetic operators
PointGFp& PointGFp::operator+=(const PointGFp& rhs)
{
if(rhs.is_zero())
return *this;
if(is_zero())
{
*this = rhs;
return *this;
}
GFpElement U1 = point_x;
GFpElement S1 = point_y;
GFpElement rhs_z2 = rhs.point_z * rhs.point_z;
U1 *= rhs_z2;
S1 *= rhs_z2 * rhs.point_z;
GFpElement U2 = rhs.point_x;
GFpElement S2 = rhs.point_y;
GFpElement lhs_z2 = point_z * point_z;
U2 *= lhs_z2;
S2 *= lhs_z2 * point_z;
GFpElement H(U2 - U1);
GFpElement r(S2 - S1);
if(H.is_zero())
{
if(r.is_zero())
{
mult2_in_place();
return *this;
}
*this = PointGFp(curve); // setting myself to zero
return *this;
}
U2 = H * H;
S2 = U2 * H;
U2 *= U1;
GFpElement x(r*r - S2 - (U2+U2));
GFpElement z(S1 * S2);
GFpElement y(r * (U2-x) - z);
z = (point_z * rhs.point_z) * H;
point_x = x;
point_y = y;
point_z = z;
return *this;
}
PointGFp& PointGFp::operator-=(const PointGFp& rhs)
{
PointGFp minus_rhs = PointGFp(rhs).negate();
if(is_zero())
*this = minus_rhs;
else
*this += minus_rhs;
return *this;
}
PointGFp& PointGFp::operator*=(const BigInt& scalar)
{
PointGFp H(this->curve); // create as zero
PointGFp P(*this);
BigInt m(scalar);
if(m < BigInt(0))
{
m.flip_sign();
P.negate();
}
// Move upwards
if(P.is_zero() || (m == BigInt(0)))
{
*this = H;
return *this;
}
// FIXME: *this != P if m was -1 !
if(m == BigInt(1)) //*this == P already
return *this;
const int l = m.bits() - 1;
for(int i = l; i >= 0; --i)
{
H.mult2_in_place();
if(m.get_bit(i))
H += P;
}
if(!H.is_zero()) // cannot convert if H == O
*this = H.get_z_to_one();
else
*this = H;
return *this;
}
PointGFp& PointGFp::negate()
{
if(!is_zero())
point_y.negate();
return *this;
}
// *this *= 2
PointGFp& PointGFp::mult2_in_place()
{
if(is_zero())
return *this;
else if(point_y.is_zero())
{
*this = PointGFp(curve); // setting myself to zero
return *this;
}
GFpElement Y_squared = point_y*point_y;
GFpElement S = point_x * Y_squared;
GFpElement x = S + S;
S = x + x;
GFpElement a_z4 = curve.get_a();
GFpElement z2 = point_z * point_z;
a_z4 *= z2;
a_z4 *= z2;
GFpElement y(point_x * point_x);
GFpElement M(y + y + y + a_z4);
x = M * M - (S+S);
y = Y_squared * Y_squared;
GFpElement U(y + y);
GFpElement z = U + U;
U = z + z;
y = M * (S - x) - U;
z = point_y * point_z;
z = z + z;
point_x = x;
point_y = y;
point_z = z;
return *this;
}
/**
* returns a point equivalent to *this but were
* Z has value one, i.e. x and y correspond to
* their values in affine coordinates
*/
PointGFp PointGFp::get_z_to_one()
{
return PointGFp(*this).set_z_to_one();
}
/**
* changes the representation of *this so that
* Z has value one, i.e. x and y correspond to
* their values in affine coordinates.
* returns *this.
*/
const PointGFp& PointGFp::set_z_to_one()
{
if(point_z.is_zero())
throw Illegal_Transformation("cannot convert Z to one");
if(point_z.get_value() != 1)
{
// Converts to affine coordinates
GFpElement z = inverse(point_z);
GFpElement z2 = z * z;
z *= z2;
GFpElement x = point_x * z2;
GFpElement y = point_y * z;
point_z = GFpElement(curve.get_p(), BigInt(1));
point_x = x;
point_y = y;
}
return *this;
}
BigInt PointGFp::get_affine_x() const
{
if(is_zero())
throw Illegal_Transformation("cannot convert to affine");
GFpElement z2 = point_z * point_z;
z2.inverse_in_place();
z2 *= point_x;
return z2.get_value();
}
BigInt PointGFp::get_affine_y() const
{
if(is_zero())
throw Illegal_Transformation("cannot convert to affine");
GFpElement z3 = point_z * point_z * point_z;
z3.inverse_in_place();
z3 *= point_y;
return z3.get_value();
}
// Is this the point at infinity?
bool PointGFp::is_zero() const
{
return(point_x.is_zero() && point_z.is_zero());
}
void PointGFp::check_invariants() const
{
/*
Is the point still on the curve?? (If everything is correct, the
point is always on its curve; then the function will return
silently. If Oskar managed to corrupt this object's state, then it
will throw an exception.)
*/
if(is_zero())
return;
const GFpElement y2 = point_y * point_y;
const GFpElement x3 = point_x * point_x * point_x;
if(point_z.get_value() == BigInt(1))
{
GFpElement ax = curve.get_a() * point_x;
if(y2 != (x3 + ax + curve.get_b()))
throw Illegal_Point();
}
GFpElement Zpow2 = point_z * point_z;
GFpElement Zpow3 = Zpow2 * point_z;
GFpElement AZpow4 = Zpow3 * point_z * curve.get_a();
const GFpElement aXZ4 = AZpow4 * point_x;
const GFpElement bZ6 = curve.get_b() * Zpow3 * Zpow3;
if(y2 != (x3 + aXZ4 + bZ6))
throw Illegal_Point();
}
// swaps the states of *this and other, does not throw!
void PointGFp::swap(PointGFp& other)
{
curve.swap(other.curve);
point_x.swap(other.point_x);
point_y.swap(other.point_y);
point_z.swap(other.point_z);
}
bool PointGFp::operator==(const PointGFp& other) const
{
if(get_curve() != other.get_curve())
return false;
return (point_x == other.point_x &&
point_y == other.point_y &&
point_z == other.point_z);
}
// arithmetic operators
PointGFp operator+(const PointGFp& lhs, PointGFp const& rhs)
{
PointGFp tmp(lhs);
return tmp += rhs;
}
PointGFp operator-(const PointGFp& lhs, PointGFp const& rhs)
{
PointGFp tmp(lhs);
return tmp -= rhs;
}
PointGFp operator-(const PointGFp& lhs)
{
return PointGFp(lhs).negate();
}
PointGFp operator*(const BigInt& scalar, const PointGFp& point)
{
PointGFp result(point);
return result *= scalar;
}
PointGFp operator*(const PointGFp& point, const BigInt& scalar)
{
PointGFp result(point);
return result *= scalar;
}
// encoding and decoding
SecureVector<byte> EC2OSP(const PointGFp& point, byte format)
{
if(point.is_zero())
return SecureVector<byte>(1); // single 0 byte
const u32bit p_bits = point.get_curve().get_p().bits();
u32bit p_bytes = point.get_curve().get_p().bytes();
BigInt x = point.get_affine_x();
BigInt y = point.get_affine_y();
SecureVector<byte> bX = BigInt::encode_1363(x, p_bytes);
SecureVector<byte> bY = BigInt::encode_1363(y, p_bytes);
if(format == PointGFp::UNCOMPRESSED)
{
SecureVector<byte> result(2*p_bytes+1);
result[0] = 4;
result.copy(1, bX.begin(), p_bytes);
result.copy(p_bytes+1, bY.begin(), p_bytes);
return result;
}
else if(format == PointGFp::COMPRESSED)
{
SecureVector<byte> result(p_bytes+1);
result[0] = 2;
result.copy(1, bX.begin(), bX.size());
if(y.get_bit(0))
result[0] |= 1;
return result;
}
else if(format == PointGFp::HYBRID)
{
SecureVector<byte> result(2*p_bytes+1);
result[0] = 6;
result.copy(1, bX.begin(), bX.size());
result.copy(p_bytes+1, bY.begin(), bY.size());
if(y.get_bit(0))
result[0] |= 1;
return result;
}
else
throw Invalid_Argument("illegal point encoding format specification");
}
PointGFp OS2ECP(const MemoryRegion<byte>& os, const CurveGFp& curve)
{
if(os.size() == 1 && os[0] == 0)
return PointGFp(curve); // return zero
const byte pc = os[0];
BigInt x, y;
if(pc == 2 || pc == 3)
{
//compressed form
x = BigInt::decode(&os[1], os.size() - 1);
bool yMod2 = ((pc & 0x01) == 1);
y = decompress_point(yMod2, x, curve);
}
else if(pc == 4)
{
// uncompressed form
u32bit l = (os.size() - 1) / 2;
x = BigInt::decode(&os[1], l);
y = BigInt::decode(&os[l+1], l);
}
else if(pc == 6 || pc == 7)
{
// hybrid form
u32bit l = (os.size() - 1) / 2;
x = BigInt::decode(&os[1], l);
y = BigInt::decode(&os[l+1], l);
bool yMod2 = ((pc & 0x01) == 1);
if(decompress_point(yMod2, x, curve) != y)
throw Illegal_Point("OS2ECP: Decoding error in hybrid format");
}
else
throw Invalid_Argument("OS2ECP: Unknown format type");
PointGFp result(curve, x, y);
result.check_invariants();
return result;
}
PointGFp create_random_point(RandomNumberGenerator& rng,
const CurveGFp& curve)
{
const BigInt& p = curve.get_p();
while(true)
{
BigInt r(rng, p.bits());
GFpElement x = GFpElement(p, r);
GFpElement x3 = x * x * x;
GFpElement y = (curve.get_a() * x) + (x3 * curve.get_b());
if(ressol(y.get_value(), p) > 0)
return PointGFp(curve, x.get_value(), y.get_value());
}
}
} // namespace Botan
|