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
|
#pragma once
/**
@file
@brief finite field class
@author MITSUNARI Shigeo(@herumi)
@license modified new BSD license
http://opensource.org/licenses/BSD-3-Clause
*/
#include <iostream>
#include <sstream>
#include <vector>
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 4127)
#pragma warning(disable : 4458)
#ifndef NOMINMAX
#define NOMINMAX
#endif
#ifndef MCL_NO_AUTOLINK
#ifdef NDEBUG
#pragma comment(lib, "mcl.lib")
#else
#pragma comment(lib, "mcld.lib")
#endif
#endif
#endif
#include <cybozu/hash.hpp>
#include <mcl/op.hpp>
#include <mcl/util.hpp>
#include <mcl/operator.hpp>
namespace mcl {
struct FpTag;
struct ZnTag;
namespace fp {
// copy src to dst as little endian
void copyUnitToByteAsLE(uint8_t *dst, const Unit *src, size_t byteSize);
// copy src to dst as little endian
void copyByteToUnitAsLE(Unit *dst, const uint8_t *src, size_t byteSize);
void copyAndMask(Unit *y, const void *x, size_t xByteSize, const Op& op, bool doMask);
uint64_t getUint64(bool *pb, const fp::Block& b);
int64_t getInt64(bool *pb, fp::Block& b, const fp::Op& op);
const char *ModeToStr(Mode mode);
Mode StrToMode(const std::string& s);
void dumpUnit(Unit x);
void UnitToHex(char *buf, size_t maxBufSize, Unit x);
bool isEnableJIT(); // 1st call is not threadsafe
// hash msg
std::string hash(size_t bitSize, const char *msg, size_t msgSize);
} // mcl::fp
template<class tag = FpTag, size_t maxBitSize = MCL_MAX_BIT_SIZE>
class FpT : public fp::Operator<FpT<tag, maxBitSize> > {
typedef fp::Unit Unit;
typedef fp::Operator<FpT<tag, maxBitSize> > Operator;
public:
static const size_t maxSize = (maxBitSize + fp::UnitBitSize - 1) / fp::UnitBitSize;
private:
template<class tag2, size_t maxBitSize2> friend class FpT;
Unit v_[maxSize];
static fp::Op op_;
static FpT<tag, maxBitSize> inv2_;
static int ioMode_;
template<class Fp> friend class FpDblT;
template<class Fp> friend class Fp2T;
template<class Fp> friend struct Fp6T;
public:
typedef FpT<tag, maxBitSize> BaseFp;
// return pointer to array v_[]
const Unit *getUnit() const { return v_; }
FpT* getFp0() { return this; }
const FpT* getFp0() const { return this; }
static inline size_t getUnitSize() { return op_.N; }
static inline size_t getBitSize() { return op_.bitSize; }
static inline size_t getByteSize() { return (op_.bitSize + 7) / 8; }
static inline const fp::Op& getOp() { return op_; }
void dump() const
{
const size_t N = op_.N;
for (size_t i = 0; i < N; i++) {
fp::dumpUnit(v_[N - 1 - i]);
}
printf("\n");
}
static inline void init(const mpz_class& m, fp::Mode mode = fp::FP_AUTO)
{
init(m.get_str(), mode);
}
static inline void init(const std::string& mstr, fp::Mode mode = fp::FP_AUTO)
{
assert(maxBitSize <= MCL_MAX_BIT_SIZE);
op_.init(mstr, maxBitSize, mode);
{ // set oneRep
FpT& one = *reinterpret_cast<FpT*>(op_.oneRep);
one.clear();
one.v_[0] = 1;
one.toMont();
}
{ // set half
mpz_class half = (op_.mp + 1) / 2;
gmp::getArray(op_.half, op_.N, half);
}
inv(inv2_, 2);
}
static inline void getModulo(std::string& pstr)
{
gmp::getStr(pstr, op_.mp);
}
static inline bool isFullBit() { return op_.isFullBit; }
/*
binary patter of p
@note the value of p is zero
*/
static inline const FpT& getP()
{
return *reinterpret_cast<const FpT*>(op_.p);
}
bool isOdd() const
{
fp::Block b;
getBlock(b);
return (b.p[0] & 1) == 1;
}
static inline bool squareRoot(FpT& y, const FpT& x)
{
mpz_class mx, my;
x.getMpz(mx);
bool b = op_.sq.get(my, mx);
if (!b) return false;
y.setMpz(my);
return true;
}
FpT() {}
FpT(const FpT& x)
{
op_.fp_copy(v_, x.v_);
}
FpT& operator=(const FpT& x)
{
op_.fp_copy(v_, x.v_);
return *this;
}
void clear()
{
op_.fp_clear(v_);
}
FpT(int64_t x) { operator=(x); }
explicit FpT(const std::string& str, int base = 0)
{
setStr(str, base);
}
FpT& operator=(int64_t x)
{
if (x == 1) {
op_.fp_copy(v_, op_.oneRep);
} else {
clear();
if (x) {
int64_t y = x < 0 ? -x : x;
if (sizeof(Unit) == 8) {
v_[0] = y;
} else {
v_[0] = (uint32_t)y;
v_[1] = (uint32_t)(y >> 32);
}
if (x < 0) neg(*this, *this);
toMont();
}
}
return *this;
}
static inline bool isMont() { return op_.isMont; }
/*
convert normal value to Montgomery value
do nothing is !isMont()
*/
void toMont()
{
if (isMont()) op_.toMont(v_, v_);
}
/*
convert Montgomery value to normal value
do nothing is !isMont()
*/
void fromMont()
{
if (isMont()) op_.fromMont(v_, v_);
}
std::istream& readStream(std::istream& is, int ioMode)
{
bool isMinus;
fp::streamToArray(&isMinus, v_, FpT::getByteSize(), is, ioMode);
if (fp::isGreaterOrEqualArray(v_, op_.p, op_.N)) throw cybozu::Exception("FpT:readStream:large value");
if (!(ioMode & IoArrayRaw)) {
if (isMinus) {
neg(*this, *this);
}
toMont();
}
return is;
}
void setStr(const std::string& str, int ioMode = 0)
{
std::istringstream is(str);
readStream(is, ioMode);
}
/*
throw exception if x >= p
*/
template<class S>
void setArray(const S *x, size_t n)
{
fp::copyAndMask(v_, x, sizeof(S) * n, op_, false);
toMont();
}
/*
mask inBuf with (1 << (bitLen - 1)) - 1
*/
template<class S>
void setArrayMask(const S *inBuf, size_t n)
{
fp::copyAndMask(v_, inBuf, sizeof(S) * n, op_, true);
toMont();
}
void getBlock(fp::Block& b) const
{
b.n = op_.N;
if (isMont()) {
op_.fromMont(b.v_, v_);
b.p = &b.v_[0];
} else {
b.p = &v_[0];
}
}
template<class RG>
void setRand(RG& rg)
{
fp::getRandVal(v_, rg, op_.p, op_.bitSize);
toMont();
}
/*
hash msg and mask with (1 << (bitLen - 1)) - 1
*/
void setMsg(const char *msg, size_t msgSize)
{
std::string digest = mcl::fp::hash(op_.bitSize, msg, msgSize);
setArrayMask(digest.c_str(), digest.size());
}
void setMsg(const std::string& msg)
{
setMsg(msg.data(), msg.size());
}
void getStr(std::string& str, int ioMode = 0) const
{
fp::Block b;
const size_t n = getByteSize();
const Unit *p = v_;
if (!(ioMode & IoArrayRaw)) {
getBlock(b);
p = b.p;
}
if (ioMode & (IoArray | IoArrayRaw | IoEcComp)) {
str.resize(n);
fp::copyUnitToByteAsLE(reinterpret_cast<uint8_t*>(&str[0]), p, str.size());
return;
}
// use low 8-bit ioMode for Fp
fp::arrayToStr(str, b.p, b.n, ioMode & 255);
}
std::string getStr(int ioMode = 0) const
{
std::string str;
getStr(str, ioMode);
return str;
}
void getMpz(mpz_class& x) const
{
fp::Block b;
getBlock(b);
gmp::setArray(x, b.p, b.n);
}
mpz_class getMpz() const
{
mpz_class x;
getMpz(x);
return x;
}
void setMpz(const mpz_class& x)
{
if (x < 0) throw cybozu::Exception("Fp:setMpz:negative is not supported") << x;
setArray(gmp::getUnit(x), gmp::getUnitSize(x));
}
static inline void add(FpT& z, const FpT& x, const FpT& y) { op_.fp_add(z.v_, x.v_, y.v_, op_.p); }
static inline void sub(FpT& z, const FpT& x, const FpT& y) { op_.fp_sub(z.v_, x.v_, y.v_, op_.p); }
static inline void addPre(FpT& z, const FpT& x, const FpT& y) { op_.fp_addPre(z.v_, x.v_, y.v_); }
static inline void subPre(FpT& z, const FpT& x, const FpT& y) { op_.fp_subPre(z.v_, x.v_, y.v_); }
static inline void mul(FpT& z, const FpT& x, const FpT& y) { op_.fp_mul(z.v_, x.v_, y.v_, op_.p); }
static inline void mulUnit(FpT& z, const FpT& x, const Unit y)
{
if (mulSmallUnit(z, x, y)) return;
op_.fp_mulUnit(z.v_, x.v_, y, op_.p);
}
static inline void inv(FpT& y, const FpT& x) { op_.fp_invOp(y.v_, x.v_, op_); }
static inline void neg(FpT& y, const FpT& x) { op_.fp_neg(y.v_, x.v_, op_.p); }
static inline void sqr(FpT& y, const FpT& x) { op_.fp_sqr(y.v_, x.v_, op_.p); }
static inline void divBy2(FpT& y, const FpT& x)
{
#if 0
mul(y, x, inv2_);
#else
bool odd = (x.v_[0] & 1) != 0;
op_.fp_shr1(y.v_, x.v_);
if (odd) {
op_.fp_addPre(y.v_, y.v_, op_.half);
}
#endif
}
static inline void divBy4(FpT& y, const FpT& x)
{
divBy2(y, x); // QQQ : optimize later
divBy2(y, y);
}
bool isZero() const { return op_.fp_isZero(v_); }
bool isOne() const { return fp::isEqualArray(v_, op_.oneRep, op_.N); }
static const inline FpT& one() { return *reinterpret_cast<const FpT*>(op_.oneRep); }
/*
half = (p + 1) / 2
return true if half <= x < p
return false if 0 <= x < half
*/
bool isNegative() const
{
fp::Block b;
getBlock(b);
return fp::isGreaterOrEqualArray(b.p, op_.half, op_.N);
}
bool isValid() const
{
return fp::isLessArray(v_, op_.p, op_.N);
}
uint64_t getUint64(bool *pb = 0) const
{
fp::Block b;
getBlock(b);
return fp::getUint64(pb, b);
}
int64_t getInt64(bool *pb = 0) const
{
fp::Block b;
getBlock(b);
return fp::getInt64(pb, b, op_);
}
bool operator==(const FpT& rhs) const { return fp::isEqualArray(v_, rhs.v_, op_.N); }
bool operator!=(const FpT& rhs) const { return !operator==(rhs); }
friend inline std::ostream& operator<<(std::ostream& os, const FpT& self)
{
return os << self.getStr(fp::detectIoMode(getIoMode(), os));
}
friend inline std::istream& operator>>(std::istream& is, FpT& self)
{
return self.readStream(is, fp::detectIoMode(getIoMode(), is));
}
/*
@note
this compare functions is slow because of calling mul if isMont is true.
*/
static inline int compare(const FpT& x, const FpT& y)
{
fp::Block xb, yb;
x.getBlock(xb);
y.getBlock(yb);
return fp::compareArray(xb.p, yb.p, op_.N);
}
bool isLess(const FpT& rhs) const
{
fp::Block xb, yb;
getBlock(xb);
rhs.getBlock(yb);
return fp::isLessArray(xb.p, yb.p, op_.N);
}
bool operator<(const FpT& rhs) const { return isLess(rhs); }
bool operator>=(const FpT& rhs) const { return !operator<(rhs); }
bool operator>(const FpT& rhs) const { return rhs < *this; }
bool operator<=(const FpT& rhs) const { return !operator>(rhs); }
/*
@note
return unexpected order if isMont is set.
*/
static inline int compareRaw(const FpT& x, const FpT& y)
{
return fp::compareArray(x.v_, y.v_, op_.N);
}
bool isLessRaw(const FpT& rhs) const
{
return fp::isLessArray(v_, rhs.v_, op_.N);
}
/*
set IoMode for operator<<(), or operator>>()
*/
static inline void setIoMode(int ioMode)
{
if (ioMode_ & ~0xff) throw cybozu::Exception("FpT:setIoMode:bad mode") << ioMode;
ioMode_ = ioMode;
}
static inline int getIoMode() { return ioMode_; }
// backward compatibility
static inline void setModulo(const std::string& mstr, fp::Mode mode = fp::FP_AUTO)
{
init(mstr, mode);
}
static inline size_t getModBitLen() { return getBitSize(); }
};
template<class tag, size_t maxBitSize> fp::Op FpT<tag, maxBitSize>::op_;
template<class tag, size_t maxBitSize> FpT<tag, maxBitSize> FpT<tag, maxBitSize>::inv2_;
template<class tag, size_t maxBitSize> int FpT<tag, maxBitSize>::ioMode_ = IoAuto;
} // mcl
#ifdef CYBOZU_USE_BOOST
namespace mcl {
template<class tag, size_t maxBitSize>
size_t hash_value(const mcl::FpT<tag, maxBitSize>& x, size_t v = 0)
{
return static_cast<size_t>(cybozu::hash64(x.getUnit(), x.getUnitSize(), v));
}
}
#else
namespace std { CYBOZU_NAMESPACE_TR1_BEGIN
template<class tag, size_t maxBitSize>
struct hash<mcl::FpT<tag, maxBitSize> > {
size_t operator()(const mcl::FpT<tag, maxBitSize>& x, uint64_t v = 0) const
{
return static_cast<size_t>(cybozu::hash64(x.getUnit(), x.getUnitSize(), v));
}
};
CYBOZU_NAMESPACE_TR1_END } // std::tr1
#endif
#ifdef _WIN32
#pragma warning(pop)
#endif
|