FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cryptopp-cmake/ec2n.cpp at master · 0Knowledge/cryptopp-cmake · GitHub
0Knowledge
/
cryptopp-cmake
Public
forked from
mpapierski/cryptopp-cmake
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
cryptopp-cmake
/
ec2n.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
292 lines (247 loc) · 7.04 KB
Breadcrumbs
cryptopp-cmake
/
ec2n.cpp
Copy path
File metadata and controls
292 lines (247 loc) · 7.04 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
//
ec2n.cpp - written and placed in the public domain by Wei Dai
#
include
"
pch.h
"
#
ifndef
CRYPTOPP_IMPORTS
#
include
"
ec2n.h
"
#
include
"
asn.h
"
#
include
"
algebra.cpp
"
#
include
"
eprecomp.cpp
"
NAMESPACE_BEGIN
(CryptoPP)
EC2N
::
EC2N
(BufferedTransformation &bt)
: m_field(BERDecodeGF2NP(bt))
{
BERSequenceDecoder
seq
(bt);
m_field->
BERDecodeElement
(seq, m_a);
m_field->
BERDecodeElement
(seq, m_b);
//
skip optional seed
if
(!seq.
EndReached
())
{
SecByteBlock seed;
unsigned
int
unused;
BERDecodeBitString
(seq, seed, unused);
}
seq.
MessageEnd
();
}
void
EC2N::DEREncode
(BufferedTransformation &bt)
const
{
m_field->
DEREncode
(bt);
DERSequenceEncoder
seq
(bt);
m_field->
DEREncodeElement
(seq, m_a);
m_field->
DEREncodeElement
(seq, m_b);
seq.
MessageEnd
();
}
bool
EC2N::DecodePoint
(
EC2N
::Point &P,
const
byte *encodedPoint,
size_t
encodedPointLen)
const
{
StringStore
store
(encodedPoint, encodedPointLen);
return
DecodePoint
(P, store, encodedPointLen);
}
bool
EC2N::DecodePoint
(
EC2N
::Point &P, BufferedTransformation &bt,
size_t
encodedPointLen)
const
{
byte type;
if
(encodedPointLen <
1
|| !bt.
Get
(type))
return
false
;
switch
(type)
{
case
0
:
P.
identity
=
true
;
return
true
;
case
2
:
case
3
:
{
if
(encodedPointLen !=
EncodedPointSize
(
true
))
return
false
;
P.
identity
=
false
;
P.
x
.
Decode
(bt, m_field->
MaxElementByteLength
());
if
(P.
x
.
IsZero
())
{
P.
y
= m_field->
SquareRoot
(m_b);
return
true
;
}
FieldElement z = m_field->
Square
(P.
x
);
assert
(P.
x
== m_field->
SquareRoot
(z));
P.
y
= m_field->
Divide
(m_field->
Add
(m_field->
Multiply
(z, m_field->
Add
(P.
x
, m_a)), m_b), z);
assert
(P.
x
== m_field->
Subtract
(m_field->
Divide
(m_field->
Subtract
(m_field->
Multiply
(P.
y
, z), m_b), z), m_a));
z = m_field->
SolveQuadraticEquation
(P.
y
);
assert
(m_field->
Add
(m_field->
Square
(z), z) == P.
y
);
z.
SetCoefficient
(
0
, type &
1
);
P.
y
= m_field->
Multiply
(z, P.
x
);
return
true
;
}
case
4
:
{
if
(encodedPointLen !=
EncodedPointSize
(
false
))
return
false
;
unsigned
int
len = m_field->
MaxElementByteLength
();
P.
identity
=
false
;
P.
x
.
Decode
(bt, len);
P.
y
.
Decode
(bt, len);
return
true
;
}
default
:
return
false
;
}
}
void
EC2N::EncodePoint
(BufferedTransformation &bt,
const
Point &P,
bool
compressed)
const
{
if
(P.
identity
)
NullStore
().
TransferTo
(bt,
EncodedPointSize
(compressed));
else
if
(compressed)
{
bt.
Put
(
2
+ (!P.
x
?
0
: m_field->
Divide
(P.
y
, P.
x
).
GetBit
(
0
)));
P.
x
.
Encode
(bt, m_field->
MaxElementByteLength
());
}
else
{
unsigned
int
len = m_field->
MaxElementByteLength
();
bt.
Put
(
4
);
//
uncompressed
P.
x
.
Encode
(bt, len);
P.
y
.
Encode
(bt, len);
}
}
void
EC2N::EncodePoint
(byte *encodedPoint,
const
Point &P,
bool
compressed)
const
{
ArraySink
sink
(encodedPoint,
EncodedPointSize
(compressed));
EncodePoint
(sink, P, compressed);
assert
(sink.
TotalPutLength
() ==
EncodedPointSize
(compressed));
}
EC2N
::Point
EC2N::BERDecodePoint
(BufferedTransformation &bt)
const
{
SecByteBlock str;
BERDecodeOctetString
(bt, str);
Point P;
if
(!
DecodePoint
(P, str, str.
size
()))
BERDecodeError
();
return
P;
}
void
EC2N::DEREncodePoint
(BufferedTransformation &bt,
const
Point &P,
bool
compressed)
const
{
SecByteBlock
str
(
EncodedPointSize
(compressed));
EncodePoint
(str, P, compressed);
DEREncodeOctetString
(bt, str);
}
bool
EC2N::ValidateParameters
(RandomNumberGenerator &rng,
unsigned
int
level)
const
{
bool
pass = !!m_b;
pass = pass && m_a.
CoefficientCount
() <= m_field->
MaxElementBitLength
();
pass = pass && m_b.
CoefficientCount
() <= m_field->
MaxElementBitLength
();
if
(level >=
1
)
pass = pass && m_field->
GetModulus
().
IsIrreducible
();
return
pass;
}
bool
EC2N::VerifyPoint
(
const
Point &P)
const
{
const
FieldElement &x = P.
x
, &y = P.
y
;
return
P.
identity
||
(x.
CoefficientCount
() <= m_field->
MaxElementBitLength
()
&& y.
CoefficientCount
() <= m_field->
MaxElementBitLength
()
&& !(((x+m_a)*x*x+m_b-(x+y)*y)%m_field->
GetModulus
()));
}
bool
EC2N::Equal
(
const
Point &P,
const
Point &Q)
const
{
if
(P.
identity
&& Q.
identity
)
return
true
;
if
(P.
identity
&& !Q.
identity
)
return
false
;
if
(!P.
identity
&& Q.
identity
)
return
false
;
return
(m_field->
Equal
(P.
x
,Q.
x
) && m_field->
Equal
(P.
y
,Q.
y
));
}
const
EC2N
::Point&
EC2N::Identity
()
const
{
return
Singleton<Point>().
Ref
();
}
const
EC2N
::Point&
EC2N::Inverse
(
const
Point &P)
const
{
if
(P.
identity
)
return
P;
else
{
m_R.
identity
=
false
;
m_R.
y
= m_field->
Add
(P.
x
, P.
y
);
m_R.
x
= P.
x
;
return
m_R;
}
}
const
EC2N
::Point&
EC2N::Add
(
const
Point &P,
const
Point &Q)
const
{
if
(P.
identity
)
return
Q;
if
(Q.
identity
)
return
P;
if
(
Equal
(P, Q))
return
Double
(P);
if
(m_field->
Equal
(P.
x
, Q.
x
) && m_field->
Equal
(P.
y
, m_field->
Add
(Q.
x
, Q.
y
)))
return
Identity
();
FieldElement t = m_field->
Add
(P.
y
, Q.
y
);
t = m_field->
Divide
(t, m_field->
Add
(P.
x
, Q.
x
));
FieldElement x = m_field->
Square
(t);
m_field->
Accumulate
(x, t);
m_field->
Accumulate
(x, Q.
x
);
m_field->
Accumulate
(x, m_a);
m_R.
y
= m_field->
Add
(P.
y
, m_field->
Multiply
(t, x));
m_field->
Accumulate
(x, P.
x
);
m_field->
Accumulate
(m_R.
y
, x);
m_R.
x
.
swap
(x);
m_R.
identity
=
false
;
return
m_R;
}
const
EC2N
::Point&
EC2N::Double
(
const
Point &P)
const
{
if
(P.
identity
)
return
P;
if
(!m_field->
IsUnit
(P.
x
))
return
Identity
();
FieldElement t = m_field->
Divide
(P.
y
, P.
x
);
m_field->
Accumulate
(t, P.
x
);
m_R.
y
= m_field->
Square
(P.
x
);
m_R.
x
= m_field->
Square
(t);
m_field->
Accumulate
(m_R.
x
, t);
m_field->
Accumulate
(m_R.
x
, m_a);
m_field->
Accumulate
(m_R.
y
, m_field->
Multiply
(t, m_R.
x
));
m_field->
Accumulate
(m_R.
y
, m_R.
x
);
m_R.
identity
=
false
;
return
m_R;
}
//
********************************************************
/*
EcPrecomputation<EC2N>& EcPrecomputation<EC2N>::operator=(const EcPrecomputation<EC2N> &rhs)
{
m_ec = rhs.m_ec;
m_ep = rhs.m_ep;
m_ep.m_group = m_ec.get();
return *this;
}
void EcPrecomputation<EC2N>::SetCurveAndBase(const EC2N &ec, const EC2N::Point &base)
{
m_ec.reset(new EC2N(ec));
m_ep.SetGroupAndBase(*m_ec, base);
}
void EcPrecomputation<EC2N>::Precompute(unsigned int maxExpBits, unsigned int storage)
{
m_ep.Precompute(maxExpBits, storage);
}
void EcPrecomputation<EC2N>::Load(BufferedTransformation &bt)
{
BERSequenceDecoder seq(bt);
word32 version;
BERDecodeUnsigned<word32>(seq, version, INTEGER, 1, 1);
m_ep.m_exponentBase.BERDecode(seq);
m_ep.m_windowSize = m_ep.m_exponentBase.BitCount() - 1;
m_ep.m_bases.clear();
while (!seq.EndReached())
m_ep.m_bases.push_back(m_ec->BERDecodePoint(seq));
seq.MessageEnd();
}
void EcPrecomputation<EC2N>::Save(BufferedTransformation &bt) const
{
DERSequenceEncoder seq(bt);
DEREncodeUnsigned<word32>(seq, 1); // version
m_ep.m_exponentBase.DEREncode(seq);
for (unsigned i=0; i<m_ep.m_bases.size(); i++)
m_ec->DEREncodePoint(seq, m_ep.m_bases[i]);
seq.MessageEnd();
}
EC2N::Point EcPrecomputation<EC2N>::Exponentiate(const Integer &exponent) const
{
return m_ep.Exponentiate(exponent);
}
EC2N::Point EcPrecomputation<EC2N>::CascadeExponentiate(const Integer &exponent, const DL_FixedBasePrecomputation<Element> &pc2, const Integer &exponent2) const
{
return m_ep.CascadeExponentiate(exponent, static_cast<const EcPrecomputation<EC2N> &>(pc2).m_ep, exponent2);
}
*/
NAMESPACE_END
#
endif
Back
|
FazBrowse Home
|
New Git URL