/usr/include/NTL/ZZ_pE.h is in libntl-dev 5.4.2-4.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #ifndef NTL_ZZ_pE__H
#define NTL_ZZ_pE__H
#include <NTL/vector.h>
#include <NTL/matrix.h>
#include <NTL/vec_long.h>
#include <NTL/ZZ_pX.h>
NTL_OPEN_NNS
class ZZ_pEInfoT {
private:
ZZ_pEInfoT(); // disabled
ZZ_pEInfoT(const ZZ_pEInfoT&); // disabled
void operator=(const ZZ_pEInfoT&); // disabled
public:
long ref_count;
ZZ_pEInfoT(const ZZ_pX&);
~ZZ_pEInfoT() { }
ZZ_pXModulus p;
ZZ _card;
long _card_init;
ZZ _card_base;
long _card_exp;
};
extern ZZ_pEInfoT *ZZ_pEInfo; // info for current modulus, initially null
class ZZ_pEContext {
private:
ZZ_pEInfoT *ptr;
public:
void save();
void restore() const;
ZZ_pEContext() { ptr = 0; }
ZZ_pEContext(const ZZ_pX& p);
ZZ_pEContext(const ZZ_pEContext&);
ZZ_pEContext& operator=(const ZZ_pEContext&);
~ZZ_pEContext();
};
class ZZ_pEBak {
private:
long MustRestore;
ZZ_pEInfoT *ptr;
ZZ_pEBak(const ZZ_pEBak&); // disabled
void operator=(const ZZ_pEBak&); // disabled
public:
void save();
void restore();
ZZ_pEBak() { MustRestore = 0; ptr = 0; }
~ZZ_pEBak();
};
struct ZZ_pE_NoAlloc_type { ZZ_pE_NoAlloc_type() { } };
const ZZ_pE_NoAlloc_type ZZ_pE_NoAlloc = ZZ_pE_NoAlloc_type();
class ZZ_pE {
public:
ZZ_pX _ZZ_pE__rep;
// static data
static long DivCross() { return 16; }
static long ModCross() { return 8; }
// ****** constructors and assignment
ZZ_pE();
ZZ_pE(const ZZ_pE& a) { _ZZ_pE__rep.rep.SetMaxLength(ZZ_pE::degree()); _ZZ_pE__rep = a._ZZ_pE__rep; }
ZZ_pE(ZZ_pE_NoAlloc_type) { } // allocates no space
~ZZ_pE() { }
ZZ_pE& operator=(const ZZ_pE& a) { _ZZ_pE__rep = a._ZZ_pE__rep; return *this; }
inline ZZ_pE& operator=(long a);
inline ZZ_pE& operator=(const ZZ_p& a);
ZZ_pE(ZZ_pE& x, INIT_TRANS_TYPE) : _ZZ_pE__rep(x._ZZ_pE__rep, INIT_TRANS) { }
// You can always access the _ZZ_pE__representation directly...if you dare.
ZZ_pX& LoopHole() { return _ZZ_pE__rep; }
static const ZZ_pXModulus& modulus() { return ZZ_pEInfo->p; }
static long degree() { return deg(ZZ_pEInfo->p); }
static const ZZ& cardinality();
static const ZZ_pE& zero();
static long initialized() { return (ZZ_pEInfo != 0); }
static void init(const ZZ_pX&);
};
// read-only access to _ZZ_pE__representation
inline const ZZ_pX& rep(const ZZ_pE& a) { return a._ZZ_pE__rep; }
inline void clear(ZZ_pE& x)
// x = 0
{ clear(x._ZZ_pE__rep); }
inline void set(ZZ_pE& x)
// x = 1
{ set(x._ZZ_pE__rep); }
inline void swap(ZZ_pE& x, ZZ_pE& y)
// swap x and y
{ swap(x._ZZ_pE__rep, y._ZZ_pE__rep); }
// ****** addition
inline void add(ZZ_pE& x, const ZZ_pE& a, const ZZ_pE& b)
// x = a + b
{ add(x._ZZ_pE__rep, a._ZZ_pE__rep, b._ZZ_pE__rep); }
inline void sub(ZZ_pE& x, const ZZ_pE& a, const ZZ_pE& b)
// x = a - b
{ sub(x._ZZ_pE__rep, a._ZZ_pE__rep, b._ZZ_pE__rep); }
inline void negate(ZZ_pE& x, const ZZ_pE& a)
{ negate(x._ZZ_pE__rep, a._ZZ_pE__rep); }
inline void add(ZZ_pE& x, const ZZ_pE& a, long b)
{ add(x._ZZ_pE__rep, a._ZZ_pE__rep, b); }
inline void add(ZZ_pE& x, const ZZ_pE& a, const ZZ_p& b)
{ add(x._ZZ_pE__rep, a._ZZ_pE__rep, b); }
inline void add(ZZ_pE& x, long a, const ZZ_pE& b)
{ add(x._ZZ_pE__rep, a, b._ZZ_pE__rep); }
inline void add(ZZ_pE& x, const ZZ_p& a, const ZZ_pE& b)
{ add(x._ZZ_pE__rep, a, b._ZZ_pE__rep); }
inline void sub(ZZ_pE& x, const ZZ_pE& a, long b)
{ sub(x._ZZ_pE__rep, a._ZZ_pE__rep, b); }
inline void sub(ZZ_pE& x, const ZZ_pE& a, const ZZ_p& b)
{ sub(x._ZZ_pE__rep, a._ZZ_pE__rep, b); }
inline void sub(ZZ_pE& x, long a, const ZZ_pE& b)
{ sub(x._ZZ_pE__rep, a, b._ZZ_pE__rep); }
inline void sub(ZZ_pE& x, const ZZ_p& a, const ZZ_pE& b)
{ sub(x._ZZ_pE__rep, a, b._ZZ_pE__rep); }
// ****** multiplication
inline void mul(ZZ_pE& x, const ZZ_pE& a, const ZZ_pE& b)
// x = a*b
{ MulMod(x._ZZ_pE__rep, a._ZZ_pE__rep, b._ZZ_pE__rep, ZZ_pE::modulus()); }
inline void sqr(ZZ_pE& x, const ZZ_pE& a)
// x = a^2
{ SqrMod(x._ZZ_pE__rep, a._ZZ_pE__rep, ZZ_pE::modulus()); }
inline ZZ_pE sqr(const ZZ_pE& a)
{ ZZ_pE x; sqr(x, a); NTL_OPT_RETURN(ZZ_pE, x); }
inline void mul(ZZ_pE& x, const ZZ_pE& a, long b)
{ mul(x._ZZ_pE__rep, a._ZZ_pE__rep, b); }
inline void mul(ZZ_pE& x, const ZZ_pE& a, const ZZ_p& b)
{ mul(x._ZZ_pE__rep, a._ZZ_pE__rep, b); }
inline void mul(ZZ_pE& x, long a, const ZZ_pE& b)
{ mul(x._ZZ_pE__rep, a, b._ZZ_pE__rep); }
inline void mul(ZZ_pE& x, const ZZ_p& a, const ZZ_pE& b)
{ mul(x._ZZ_pE__rep, a, b._ZZ_pE__rep); }
// ****** division
void div(ZZ_pE& x, const ZZ_pE& a, const ZZ_pE& b);
void div(ZZ_pE& x, const ZZ_pE& a, long b);
void div(ZZ_pE& x, const ZZ_pE& a, const ZZ_p& b);
void div(ZZ_pE& x, long a, const ZZ_pE& b);
void div(ZZ_pE& x, const ZZ_p& a, const ZZ_pE& b);
void inv(ZZ_pE& x, const ZZ_pE& a);
inline ZZ_pE inv(const ZZ_pE& a)
{ ZZ_pE x; inv(x, a); NTL_OPT_RETURN(ZZ_pE, x); }
// ****** exponentiation
inline void power(ZZ_pE& x, const ZZ_pE& a, const ZZ& e)
// x = a^e
{ PowerMod(x._ZZ_pE__rep, a._ZZ_pE__rep, e, ZZ_pE::modulus()); }
inline ZZ_pE power(const ZZ_pE& a, const ZZ& e)
{ ZZ_pE x; power(x, a, e); NTL_OPT_RETURN(ZZ_pE, x); }
inline void power(ZZ_pE& x, const ZZ_pE& a, long e)
{ power(x, a, ZZ_expo(e)); }
inline ZZ_pE power(const ZZ_pE& a, long e)
{ ZZ_pE x; power(x, a, e); NTL_OPT_RETURN(ZZ_pE, x); }
// ****** conversion
inline void conv(ZZ_pE& x, const ZZ_pX& a)
{ rem(x._ZZ_pE__rep, a, ZZ_pE::modulus()); }
inline void conv(ZZ_pE& x, long a)
{ conv(x._ZZ_pE__rep, a); }
inline void conv(ZZ_pE& x, const ZZ_p& a)
{ conv(x._ZZ_pE__rep, a); }
inline void conv(ZZ_pE& x, const ZZ& a)
{ conv(x._ZZ_pE__rep, a); }
inline ZZ_pE to_ZZ_pE(const ZZ_pX& a)
{ ZZ_pE x; conv(x, a); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE to_ZZ_pE(long a)
{ ZZ_pE x; conv(x, a); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE to_ZZ_pE(const ZZ_p& a)
{ ZZ_pE x; conv(x, a); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE to_ZZ_pE(const ZZ& a)
{ ZZ_pE x; conv(x, a); NTL_OPT_RETURN(ZZ_pE, x); }
// ****** comparison
inline long IsZero(const ZZ_pE& a)
{ return IsZero(a._ZZ_pE__rep); }
inline long IsOne(const ZZ_pE& a)
{ return IsOne(a._ZZ_pE__rep); }
inline long operator==(const ZZ_pE& a, const ZZ_pE& b)
{ return a._ZZ_pE__rep == b._ZZ_pE__rep; }
inline long operator==(const ZZ_pE& a, long b)
{ return a._ZZ_pE__rep == b; }
inline long operator==(const ZZ_pE& a, const ZZ_p& b)
{ return a._ZZ_pE__rep == b; }
inline long operator==(long a, const ZZ_pE& b)
{ return a == b._ZZ_pE__rep; }
inline long operator==(const ZZ_p& a, const ZZ_pE& b)
{ return a == b._ZZ_pE__rep; }
inline long operator!=(const ZZ_pE& a, const ZZ_pE& b)
{ return !(a == b); }
inline long operator!=(const ZZ_pE& a, long b)
{ return !(a == b); }
inline long operator!=(const ZZ_pE& a, const ZZ_p& b)
{ return !(a == b); }
inline long operator!=(long a, const ZZ_pE& b)
{ return !(a == b); }
inline long operator!=(const ZZ_p& a, const ZZ_pE& b)
{ return !(a == b); }
// ****** norm and trace
inline void trace(ZZ_p& x, const ZZ_pE& a)
{ TraceMod(x, a._ZZ_pE__rep, ZZ_pE::modulus()); }
inline ZZ_p trace(const ZZ_pE& a)
{ return TraceMod(a._ZZ_pE__rep, ZZ_pE::modulus()); }
inline void norm(ZZ_p& x, const ZZ_pE& a)
{ NormMod(x, a._ZZ_pE__rep, ZZ_pE::modulus()); }
inline ZZ_p norm(const ZZ_pE& a)
{ return NormMod(a._ZZ_pE__rep, ZZ_pE::modulus()); }
// ****** random numbers
inline void random(ZZ_pE& x)
// x = random element in ZZ_pE
{ random(x._ZZ_pE__rep, ZZ_pE::degree()); }
inline ZZ_pE random_ZZ_pE()
{ ZZ_pE x; random(x); NTL_OPT_RETURN(ZZ_pE, x); }
// ****** input/output
inline NTL_SNS ostream& operator<<(NTL_SNS ostream& s, const ZZ_pE& a)
{ return s << a._ZZ_pE__rep; }
NTL_SNS istream& operator>>(NTL_SNS istream& s, ZZ_pE& x);
inline ZZ_pE& ZZ_pE::operator=(long a) { conv(*this, a); return *this; }
inline ZZ_pE& ZZ_pE::operator=(const ZZ_p& a) { conv(*this, a); return *this; }
inline ZZ_pE operator+(const ZZ_pE& a, const ZZ_pE& b)
{ ZZ_pE x; add(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator+(const ZZ_pE& a, const ZZ_p& b)
{ ZZ_pE x; add(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator+(const ZZ_pE& a, long b)
{ ZZ_pE x; add(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator+(const ZZ_p& a, const ZZ_pE& b)
{ ZZ_pE x; add(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator+(long a, const ZZ_pE& b)
{ ZZ_pE x; add(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator-(const ZZ_pE& a, const ZZ_pE& b)
{ ZZ_pE x; sub(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator-(const ZZ_pE& a, const ZZ_p& b)
{ ZZ_pE x; sub(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator-(const ZZ_pE& a, long b)
{ ZZ_pE x; sub(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator-(const ZZ_p& a, const ZZ_pE& b)
{ ZZ_pE x; sub(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator-(long a, const ZZ_pE& b)
{ ZZ_pE x; sub(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator-(const ZZ_pE& a)
{ ZZ_pE x; negate(x, a); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE& operator+=(ZZ_pE& x, const ZZ_pE& b)
{ add(x, x, b); return x; }
inline ZZ_pE& operator+=(ZZ_pE& x, const ZZ_p& b)
{ add(x, x, b); return x; }
inline ZZ_pE& operator+=(ZZ_pE& x, long b)
{ add(x, x, b); return x; }
inline ZZ_pE& operator-=(ZZ_pE& x, const ZZ_pE& b)
{ sub(x, x, b); return x; }
inline ZZ_pE& operator-=(ZZ_pE& x, const ZZ_p& b)
{ sub(x, x, b); return x; }
inline ZZ_pE& operator-=(ZZ_pE& x, long b)
{ sub(x, x, b); return x; }
inline ZZ_pE& operator++(ZZ_pE& x) { add(x, x, 1); return x; }
inline void operator++(ZZ_pE& x, int) { add(x, x, 1); }
inline ZZ_pE& operator--(ZZ_pE& x) { sub(x, x, 1); return x; }
inline void operator--(ZZ_pE& x, int) { sub(x, x, 1); }
inline ZZ_pE operator*(const ZZ_pE& a, const ZZ_pE& b)
{ ZZ_pE x; mul(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator*(const ZZ_pE& a, const ZZ_p& b)
{ ZZ_pE x; mul(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator*(const ZZ_pE& a, long b)
{ ZZ_pE x; mul(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator*(const ZZ_p& a, const ZZ_pE& b)
{ ZZ_pE x; mul(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator*(long a, const ZZ_pE& b)
{ ZZ_pE x; mul(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE& operator*=(ZZ_pE& x, const ZZ_pE& b)
{ mul(x, x, b); return x; }
inline ZZ_pE& operator*=(ZZ_pE& x, const ZZ_p& b)
{ mul(x, x, b); return x; }
inline ZZ_pE& operator*=(ZZ_pE& x, long b)
{ mul(x, x, b); return x; }
inline ZZ_pE operator/(const ZZ_pE& a, const ZZ_pE& b)
{ ZZ_pE x; div(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator/(const ZZ_pE& a, const ZZ_p& b)
{ ZZ_pE x; div(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator/(const ZZ_pE& a, long b)
{ ZZ_pE x; div(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator/(const ZZ_p& a, const ZZ_pE& b)
{ ZZ_pE x; div(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE operator/(long a, const ZZ_pE& b)
{ ZZ_pE x; div(x, a, b); NTL_OPT_RETURN(ZZ_pE, x); }
inline ZZ_pE& operator/=(ZZ_pE& x, const ZZ_pE& b)
{ div(x, x, b); return x; }
inline ZZ_pE& operator/=(ZZ_pE& x, const ZZ_p& b)
{ div(x, x, b); return x; }
inline ZZ_pE& operator/=(ZZ_pE& x, long b)
{ div(x, x, b); return x; }
NTL_CLOSE_NNS
#endif
|