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
|
/*
* 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
*/
#ifndef BOTAN_POINT_GFP_H__
#define BOTAN_POINT_GFP_H__
#include <botan/curve_gfp.h>
#include <vector>
namespace Botan {
struct BOTAN_DLL Illegal_Point : public Exception
{
Illegal_Point(const std::string& err = "Malformed ECP point detected") :
Exception(err) {}
};
/**
* This class represents one point on a curve of GF(p)
*/
class BOTAN_DLL PointGFp
{
public:
enum Compression_Type {
UNCOMPRESSED = 0,
COMPRESSED = 1,
HYBRID = 2
};
/**
* Construct the point O
* @param curve The base curve
*/
PointGFp(const CurveGFp& curve);
/**
* Construct a point given its affine coordinates
* @param curve the base curve
* @param x affine x coordinate
* @param y affine y coordinate
*/
PointGFp(const CurveGFp& curve, const BigInt& x, const BigInt& y);
/**
* Construct a point given its jacobian projective coordinates
* @param curve the base curve
* @param x jacobian projective x coordinate
* @param y jacobian projective y coordinate
* @param z jacobian projective z coordinate
*/
PointGFp(const CurveGFp& curve,
const BigInt& x,
const BigInt& y,
const BigInt& z);
//PointGFp(const PointGFp& other) = default;
//PointGFp& operator=(const PointGFp& other) = default;
/**
* += Operator
* @param rhs the PointGFp to add to the local value
* @result resulting PointGFp
*/
PointGFp& operator+=(const PointGFp& rhs);
/**
* -= Operator
* @param rhs the PointGFp to subtract from the local value
* @result resulting PointGFp
*/
PointGFp& operator-=(const PointGFp& rhs);
/**
* *= Operator
* This function turns on the the special reduction multiplication
* itself for fast computation, turns it off again when finished.
* @param scalar the PointGFp to multiply with *this
* @result resulting PointGFp
*/
PointGFp& operator*=(const BigInt& scalar);
/**
* Negate this point
* @return *this
*/
PointGFp& negate();
/**
* Multiply the point by two
* @return *this
*/
PointGFp& mult2_in_place();
/**
* Set z coordinate to one.
* @return *this
*/
const PointGFp& set_z_to_one();
/**
* Return a point
* where the coordinates are transformed
* so that z equals one,
* thus x and y have just the affine values.
* @result *this
*/
PointGFp get_z_to_one();
/**
* Return base curve of this point
* @result the curve over GF(p) of this point
*/
const CurveGFp& get_curve() const { return curve; }
/**
* get affine x coordinate
* @result affine x coordinate
*/
BigInt get_affine_x() const;
/**
* get affine y coordinate
* @result affine y coordinate
*/
BigInt get_affine_y() const;
/**
* get the jacobian projective x coordinate
* @result jacobian projective x coordinate
*/
const BigInt& get_jac_proj_x() const { return coord_x; }
/**
* get the jacobian projective y coordinate
* @result jacobian projective y coordinate
*/
const BigInt& get_jac_proj_y() const { return coord_y; }
/**
* get the jacobian projective z coordinate
* @result jacobian projective z coordinate
*/
const BigInt& get_jac_proj_z() const { return coord_z; }
/**
* Is this the point at infinity?
* @result true, if this point is at infinity, false otherwise.
*/
bool is_zero() const;
/**
* Checks whether the point is to be found on the underlying curve.
* Throws an Invalid_Point exception in case of detecting that the point
* does not satisfy the curve equation.
* To be used to ensure against fault attacks.
*/
void check_invariants() const;
/**
* swaps the states of *this and other, does not throw!
* @param other the object to swap values with
*/
void swap(PointGFp& other);
/**
* Equality operator
*/
bool operator==(const PointGFp& other) const;
private:
GFpElement point_x() const { return GFpElement(curve.get_p(), coord_x); }
GFpElement point_y() const { return GFpElement(curve.get_p(), coord_y); }
GFpElement point_z() const { return GFpElement(curve.get_p(), coord_z); }
CurveGFp curve;
BigInt coord_x, coord_y, coord_z;
};
// relational operators
inline bool operator!=(const PointGFp& lhs, const PointGFp& rhs)
{
return !(rhs == lhs);
}
// arithmetic operators
PointGFp BOTAN_DLL operator+(const PointGFp& lhs, const PointGFp& rhs);
PointGFp BOTAN_DLL operator-(const PointGFp& lhs, const PointGFp& rhs);
PointGFp BOTAN_DLL operator-(const PointGFp& lhs);
PointGFp BOTAN_DLL operator*(const BigInt& scalar, const PointGFp& point);
PointGFp BOTAN_DLL operator*(const PointGFp& point, const BigInt& scalar);
PointGFp BOTAN_DLL create_random_point(RandomNumberGenerator& rng,
const CurveGFp& curve);
// encoding and decoding
SecureVector<byte> BOTAN_DLL EC2OSP(const PointGFp& point, byte format);
PointGFp BOTAN_DLL OS2ECP(const MemoryRegion<byte>& os, const CurveGFp& curve);
// swaps the states of point1 and point2, does not throw!
// cf. Meyers, Item 25
inline
void swap(PointGFp& point1, PointGFp& point2)
{
point1.swap(point2);
}
} // namespace Botan
namespace std {
// swaps the states of point1 and point2, does not throw!
// cf. Meyers, Item 25
template<> inline void
swap<Botan::PointGFp>(Botan::PointGFp& x, Botan::PointGFp& y) { x.swap(y); }
} // namespace std
#endif
|