EncryptedArray.h
1 /* Copyright (C) 2012-2020 IBM Corp.
2  * This program is Licensed under the Apache License, Version 2.0
3  * (the "License"); you may not use this file except in compliance
4  * with the License. You may obtain a copy of the License at
5  * http://www.apache.org/licenses/LICENSE-2.0
6  * Unless required by applicable law or agreed to in writing, software
7  * distributed under the License is distributed on an "AS IS" BASIS,
8  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9  * See the License for the specific language governing permissions and
10  * limitations under the License. See accompanying LICENSE file.
11  */
12 #ifndef HELIB_ENCRYPTEDARRAY_H
13 #define HELIB_ENCRYPTEDARRAY_H
14 
18 #include <exception>
19 #include <cmath>
20 #include <complex>
21 #include <NTL/Lazy.h>
22 #include <NTL/pair.h>
23 #include <NTL/SmartPtr.h>
24 
25 #include <helib/DoubleCRT.h>
26 #include <helib/Context.h>
27 #include <helib/Ctxt.h>
28 #include <helib/keys.h>
29 
30 namespace helib {
31 
32 typedef std::complex<double> cx_double;
33 
34 // DIRT: we're using undocumented NTL interfaces here
35 // also...this probably should be defined in NTL, anyway....
36 #define HELIB_MORE_UNWRAPARGS(n) \
37  NTL_SEPARATOR_##n NTL_REPEATER_##n(NTL_UNWRAPARG)
38 
39 // these are used to implement PlaintextArray stuff routines
40 
41 // NOTE: Variables have been marked as UNUSED to silence the unused variable
42 // warnings due to unused injected variables. It has not been possible to mark
43 // the whole section with:
44 // _Pragma("GCC diagnostic ignored \"-Wunused-variable\"") because GCC 5.4 does
45 // not honor such _Pragma.
46 // NOTE: Consider marking the section with _Pragma removing the UNUSED tag when
47 // GCC 5.4 won't be supported anymore.
48 #define PA_BOILER \
49  const PAlgebraModDerived<type>& tab = ea.getTab(); \
50  UNUSED const RX& G = ea.getG(); \
51  UNUSED long n = ea.size(); \
52  UNUSED long d = ea.getDegree(); \
53  std::vector<RX>& data = pa.getData<type>(); \
54  RBak bak; \
55  bak.save(); \
56  tab.restoreContext();
57 
58 // NOTE: Variables have been marked as UNUSED to silence the unused variable
59 // warnings due to unused injected variables. It has not been possible to mark
60 // the whole section with:
61 // _Pragma("GCC diagnostic ignored \"-Wunused-variable\"") because GCC 5.4 does
62 // not honor such _Pragma.
63 // NOTE: Consider marking the section with _Pragma removing the UNUSED tag when
64 // GCC 5.4 won't be supported anymore.
65 #define CPA_BOILER \
66  const PAlgebraModDerived<type>& tab = ea.getTab(); \
67  UNUSED const RX& G = ea.getG(); \
68  UNUSED long n = ea.size(); \
69  UNUSED long d = ea.getDegree(); \
70  const std::vector<RX>& data = pa.getData<type>(); \
71  RBak bak; \
72  bak.save(); \
73  tab.restoreContext();
74 
75 class PlaintextArray; // forward reference
76 class EncryptedArray; // forward reference
77 
113 { // purely abstract interface
114 public:
115  virtual ~EncryptedArrayBase() {}
116 
117  virtual EncryptedArrayBase* clone() const = 0;
118  // makes this usable with cloned_ptr
119 
120  virtual PA_tag getTag() const = 0;
121 
122  virtual const Context& getContext() const = 0;
123  virtual const PAlgebra& getPAlgebra() const = 0;
124  virtual long getDegree() const = 0;
125  virtual long getP2R() const = 0;
126 
129  virtual void rotate(Ctxt& ctxt, long k) const = 0;
130 
133  virtual void shift(Ctxt& ctxt, long k) const = 0;
134 
139  virtual void rotate1D(Ctxt& ctxt, long i, long k, bool dc = false) const = 0;
140 
142  virtual void shift1D(Ctxt& ctxt, long i, long k) const = 0;
143 
146  // encode/decode arrays into plaintext polynomials
147  // These methods are working for some of the derived classes (throwing
148  // otherwise)
149  virtual void encode(zzX& ptxt, const std::vector<long>& array) const = 0;
150  virtual void encode(NTL::ZZX& ptxt, const std::vector<long>& array) const = 0;
151 
152  virtual void encode(zzX& ptxt, const std::vector<zzX>& array) const = 0;
153  virtual void encode(zzX& ptxt, const PlaintextArray& array) const = 0;
154 
155  virtual void encode(NTL::ZZX& ptxt,
156  const std::vector<NTL::ZZX>& array) const = 0;
157  virtual void encode(NTL::ZZX& ptxt, const PlaintextArray& array) const = 0;
158 
159  void encode(zzX& ptxt, const std::vector<NTL::ZZX>& array) const
160  {
161  NTL::ZZX tmp;
162  encode(tmp, array);
163  convert(ptxt, tmp);
164  }
165 
166  // These methods are working for some of the derived classes (throwing
167  // otherwise)
168  virtual void decode(std::vector<long>& array, const NTL::ZZX& ptxt) const = 0;
169  virtual void decode(std::vector<NTL::ZZX>& array,
170  const NTL::ZZX& ptxt) const = 0;
171  virtual void decode(PlaintextArray& array, const NTL::ZZX& ptxt) const = 0;
172 
173  virtual void random(std::vector<long>& array) const = 0; // must be defined
174 
175  // These methods are working for some of the derived classes (throwing
176  // otherwise)
177  virtual void random(std::vector<NTL::ZZX>& array) const = 0;
178 
179  // FIXME: Inefficient implementation, calls usual decode and returns one slot
180  long decode1Slot(const NTL::ZZX& ptxt, long i) const
181  {
182  std::vector<long> v;
183  decode(v, ptxt);
184  return v.at(i);
185  }
186  void decode1Slot(NTL::ZZX& slot, const NTL::ZZX& ptxt, long i) const
187  {
188  std::vector<NTL::ZZX> v;
189  decode(v, ptxt);
190  slot = v.at(i);
191  }
192 
194  virtual void encodeUnitSelector(zzX& ptxt, long i) const = 0;
196 
199  template <typename PTXT>
200  void encrypt(Ctxt& ctxt, const PubKey& key, const PTXT& ptxt) const
201  {
202  assertEq(&getContext(),
203  &ctxt.getContext(),
204  "Cannot encrypt when ciphertext has different context than "
205  "EncryptedArray");
206  zzX pp;
207  encode(pp, ptxt); // Convert array of slots into a plaintext polynomial
208  key.Encrypt(ctxt, pp, getP2R()); // encrypt the plaintext polynomial
209  // NOTE: If secret key, will call the overridden SecKey::Encrypt
210  // FIXME: the "false" param forces the PK version
211  }
212 
213  // These methods are working for some of the derived calsses (throwing
214  // otherwise)
215  virtual void decrypt(const Ctxt& ctxt,
216  const SecKey& sKey,
217  std::vector<long>& ptxt) const = 0;
218  virtual void decrypt(const Ctxt& ctxt,
219  const SecKey& sKey,
220  std::vector<NTL::ZZX>& ptxt) const = 0;
221  virtual void decrypt(const Ctxt& ctxt,
222  const SecKey& sKey,
223  PlaintextArray& ptxt) const = 0;
224  virtual void decrypt(const Ctxt& ctxt,
225  const SecKey& sKey,
226  std::vector<double>& ptxt) const = 0;
227  virtual void decrypt(const Ctxt& ctxt,
228  const SecKey& sKey,
229  std::vector<cx_double>& ptxt) const = 0;
230 
231  // FIXME: Inefficient implementation, calls usual decrypt and returns one slot
232  long decrypt1Slot(const Ctxt& ctxt, const SecKey& sKey, long i) const
233  {
234  std::vector<long> v;
235  decrypt(ctxt, sKey, v);
236  return v.at(i);
237  }
238  void decrypt1Slot(NTL::ZZX& slot,
239  const Ctxt& ctxt,
240  const SecKey& sKey,
241  long i) const
242  {
243  std::vector<NTL::ZZX> v;
244  decrypt(ctxt, sKey, v);
245  slot = v.at(i);
246  }
248 
257  // These methods are working for some of the derived calsses (throwing
258  // otherwise)
259  virtual void buildLinPolyCoeffs(std::vector<NTL::ZZX>& C,
260  const std::vector<NTL::ZZX>& L) const = 0;
261 
262  // restore contexts mod p and mod G
263  virtual void restoreContext() const {}
264  virtual void restoreContextForG() const {}
265 
266  /* some non-virtual convenience functions */
267 
269  long size() const { return getPAlgebra().getNSlots(); }
270 
272  long dimension() const { return getPAlgebra().numOfGens(); }
273 
275  long sizeOfDimension(long i) const { return getPAlgebra().OrderOf(i); }
276 
278  bool nativeDimension(long i) const { return getPAlgebra().SameOrd(i); }
279 
281  long coordinate(long i, long k) const
282  {
283  return getPAlgebra().coordinate(i, k);
284  }
285 
287  long addCoord(long i, long k, long offset) const
288  {
289  return getPAlgebra().addCoord(i, k, offset);
290  }
291 
294  template <typename U>
295  void rotate1D(std::vector<U>& out,
296  const std::vector<U>& in,
297  long i,
298  long offset) const
299  {
300  assertEq(lsize(in),
301  size(),
302  "Input vector has wrong size (must equal EncryptedArray::size())");
303  out.resize(in.size());
304  for (long j = 0; j < size(); j++)
305  out[addCoord(i, j, offset)] = in[j];
306  }
307 };
308 
313 template <typename type>
315 {
316 public:
317  PA_INJECT(type)
318 
319 private:
320  const Context& context;
321  const PAlgebraModDerived<type>& tab;
322 
323  // FIXME: all of these types should be copyable
324  // out of context, but NTL 8.0 still does not copy
325  // matrix copies out of context correctly, as it
326  // relies on plain SetLength...I need to fix this
327  // in NTL
328  //
329  MappingData<type> mappingData; // MappingData is defined in PAlgebra.h
330 
331  NTL::Lazy<NTL::Mat<RE>> linPolyMatrix;
332 
333  NTL::Lazy<NTL::Pair<NTL::Mat<R>, NTL::Mat<R>>> normalBasisMatrices;
334  // a is the matrix, b is its inverse
335 
336 public:
337  explicit EncryptedArrayDerived(const Context& _context,
338  const RX& _G,
339  const PAlgebraMod& _tab);
340 
341  EncryptedArrayDerived(const EncryptedArrayDerived& other) // copy constructor
342  :
343  context(other.context), tab(other.tab)
344  {
345  RBak bak;
346  bak.save();
347  tab.restoreContext();
348  REBak ebak;
349  ebak.save();
350  other.mappingData.restoreContextForG();
351  mappingData = other.mappingData;
352  linPolyMatrix = other.linPolyMatrix;
353  normalBasisMatrices = other.normalBasisMatrices;
354  }
355 
357  const EncryptedArrayDerived& other) // assignment
358  {
359  if (this == &other)
360  return *this;
361  assertEq(&context,
362  &other.context,
363  "Cannot assign a EncryptedArrays with different contexts");
364  assertEq(&tab,
365  &other.tab,
366  "Cannot assign a EncryptedArrays with different tabs");
367 
368  RBak bak;
369  bak.save();
370  tab.restoreContext();
371  mappingData = other.mappingData;
372  linPolyMatrix = other.linPolyMatrix;
373  normalBasisMatrices = other.normalBasisMatrices;
374  return *this;
375  }
376 
377  virtual EncryptedArrayBase* clone() const override
378  {
379  return new EncryptedArrayDerived(*this);
380  }
381 
382  virtual PA_tag getTag() const override { return tag; }
383  // tag is defined in PA_INJECT, see PAlgebra.h
384 
385  template <template <typename> class T, typename... Args>
386  void dispatch(Args&&... args) const
387  {
388  T<type>::apply(*this, std::forward<Args>(args)...);
389  }
390 
391  const RX& getG() const { return mappingData.getG(); }
392 
393  const NTL::Mat<R>& getNormalBasisMatrix() const
394  {
395  if (!normalBasisMatrices.built())
397  return normalBasisMatrices->a;
398  }
399 
400  const NTL::Mat<R>& getNormalBasisMatrixInverse() const
401  {
402  if (!normalBasisMatrices.built())
404  return normalBasisMatrices->b;
405  }
406 
407  void initNormalBasisMatrix() const;
408 
409  virtual void restoreContext() const override { tab.restoreContext(); }
410  virtual void restoreContextForG() const override
411  {
412  mappingData.restoreContextForG();
413  }
414 
415  virtual const Context& getContext() const override { return context; }
416  virtual const PAlgebra& getPAlgebra() const override
417  {
418  return tab.getZMStar();
419  }
420  virtual long getDegree() const override { return mappingData.getDegG(); }
421  const PAlgebraModDerived<type>& getTab() const { return tab; }
422 
423  virtual void rotate(Ctxt& ctxt, long k) const override;
424  virtual void shift(Ctxt& ctxt, long k) const override;
425  virtual void rotate1D(Ctxt& ctxt,
426  long i,
427  long k,
428  bool dc = false) const override;
429 
430  long getP2R() const override { return getTab().getPPowR(); }
431 
432  // avoid this being "hidden" by other rotate1D's
433  template <typename U>
434  void rotate1D(std::vector<U>& out,
435  const std::vector<U>& in,
436  long i,
437  long offset) const
438  {
439  EncryptedArrayBase::rotate1D(out, in, i, offset);
440  }
441  virtual void shift1D(Ctxt& ctxt, long i, long k) const override;
442 
443  /* Begin CKKS functions. They will simply throw here. */
451  void decrypt(UNUSED const Ctxt& ctxt,
452  UNUSED const SecKey& sKey,
453  UNUSED std::vector<double>& ptxt) const override
454  {
455  throw LogicError("Unimplemented: "
456  "EncryptedArrayDerived::decrypt for CKKS type");
457  }
465  void decrypt(UNUSED const Ctxt& ctxt,
466  UNUSED const SecKey& sKey,
467  UNUSED std::vector<cx_double>& ptxt) const override
468  {
469  throw LogicError("Unimplemented: "
470  "EncryptedArrayDerived::decrypt for CKKS type");
471  }
472  /* End CKKS functions. */
473 
474  virtual void encode(NTL::ZZX& ptxt,
475  const std::vector<long>& array) const override
476  {
477  genericEncode(ptxt, array);
478  }
479 
480  virtual void encode(zzX& ptxt, const std::vector<long>& array) const override
481  {
482  genericEncode(ptxt, array);
483  }
484 
485  virtual void encode(NTL::ZZX& ptxt,
486  const std::vector<NTL::ZZX>& array) const override
487  {
488  genericEncode(ptxt, array);
489  }
490 
491  virtual void encode(zzX& ptxt, const std::vector<zzX>& array) const override
492  {
493  genericEncode(ptxt, array);
494  }
495 
496  virtual void encode(NTL::ZZX& ptxt,
497  const PlaintextArray& array) const override;
498  virtual void encode(zzX& ptxt, const PlaintextArray& array) const override;
499 
500  virtual void encodeUnitSelector(zzX& ptxt, long i) const override;
501 
502  virtual void decode(std::vector<long>& array,
503  const NTL::ZZX& ptxt) const override
504  {
505  genericDecode(array, ptxt);
506  }
507 
508  virtual void decode(std::vector<NTL::ZZX>& array,
509  const NTL::ZZX& ptxt) const override
510  {
511  genericDecode(array, ptxt);
512  }
513 
514  virtual void decode(PlaintextArray& array,
515  const NTL::ZZX& ptxt) const override;
516  virtual void decode(PlaintextArray& array, const zzX& ptxt) const;
517 
518  // choose at random and convert to std::vector<long>
519  virtual void random(std::vector<long>& array) const override
520  {
521  genericRandom(array);
522  }
523 
524  // choose at random and convert to std::vector<ZZX>
525  virtual void random(std::vector<NTL::ZZX>& array) const override
526  {
527  genericRandom(array);
528  }
529 
530  virtual void decrypt(const Ctxt& ctxt,
531  const SecKey& sKey,
532  std::vector<long>& ptxt) const override
533  {
534  genericDecrypt(ctxt, sKey, ptxt);
535  if (ctxt.getPtxtSpace() < getP2R()) {
536  for (long i = 0; i < (long)ptxt.size(); i++)
537  ptxt[i] %= ctxt.getPtxtSpace();
538  }
539  }
540 
541  virtual void decrypt(const Ctxt& ctxt,
542  const SecKey& sKey,
543  std::vector<NTL::ZZX>& ptxt) const override
544  {
545  genericDecrypt(ctxt, sKey, ptxt);
546  if (ctxt.getPtxtSpace() < getP2R()) {
547  for (long i = 0; i < (long)ptxt.size(); i++)
548  PolyRed(ptxt[i], ctxt.getPtxtSpace(), /*abs=*/true);
549  }
550  }
551 
552  virtual void decrypt(const Ctxt& ctxt,
553  const SecKey& sKey,
554  PlaintextArray& ptxt) const override
555  {
556  genericDecrypt(ctxt, sKey, ptxt);
557  // FIXME: Reduce mod the ciphertext plaintext space as above
558  }
559 
560  virtual void buildLinPolyCoeffs(
561  std::vector<NTL::ZZX>& C,
562  const std::vector<NTL::ZZX>& L) const override;
563 
564  /* the following are specialized methods, used to work over extension
565  fields... they assume the modulus context is already set
566  */
567 
568  void encode(zzX& ptxt, const std::vector<RX>& array) const;
569  void decode(std::vector<RX>& array, const zzX& ptxt) const;
570 
571  void encode(NTL::ZZX& ptxt, const std::vector<RX>& array) const;
572  void decode(std::vector<RX>& array, const NTL::ZZX& ptxt) const;
573 
574  void encode(RX& ptxt, const std::vector<RX>& array) const;
575  void decode(std::vector<RX>& array, const RX& ptxt) const;
576 
577  // Choose random polynomial of the right degree, coeffs in GF2 or zz_p
578  void random(std::vector<RX>& array) const
579  {
580  array.resize(size());
581  for (long i = 0; i < size(); i++)
582  NTL::random(array[i], getDegree());
583  }
584 
585  void decrypt(const Ctxt& ctxt,
586  const SecKey& sKey,
587  std::vector<RX>& ptxt) const
588  {
589  genericDecrypt(ctxt, sKey, ptxt);
590  }
591 
592  virtual void buildLinPolyCoeffs(std::vector<RX>& C,
593  const std::vector<RX>& L) const;
594 
595 private:
596  /* helper template methods, to avoid repetitive code */
597 
598  template <typename T>
599  void genericEncode(NTL::ZZX& ptxt, const T& array) const
600  {
601  RBak bak;
602  bak.save();
603  tab.restoreContext();
604 
605  std::vector<RX> array1;
606  convert(array1, array);
607  encode(ptxt, array1);
608  }
609 
610  template <typename T>
611  void genericEncode(zzX& ptxt, const T& array) const
612  {
613  RBak bak;
614  bak.save();
615  tab.restoreContext();
616 
617  std::vector<RX> array1;
618  convert(array1, array);
619  encode(ptxt, array1);
620  }
621 
622  template <typename T>
623  void genericDecode(T& array, const NTL::ZZX& ptxt) const
624  {
625  RBak bak;
626  bak.save();
627  tab.restoreContext();
628 
629  std::vector<RX> array1;
630  decode(array1, ptxt);
631  convert(array, array1);
632  }
633 
634  // T is std::vector<long> or std::vector<ZZX>
635  template <typename T>
636  void genericRandom(T& array) const
637  {
638  static_assert(std::is_same<T, std::vector<long>>::value ||
639  std::is_same<T, std::vector<NTL::ZZX>>::value,
640  "Template type T must be either std::vector<long> or "
641  "std::vector<NTL::ZZX>.");
642  RBak bak;
643  // backup NTL modulus
644  bak.save();
645  tab.restoreContext();
646 
647  std::vector<RX> array1; // RX is GF2X or zz_pX
648  random(array1); // choose random coefficients from GF2/zz_p
649  convert(array, array1); // convert to type T (see NumbTh.h)
650  }
651 
652  template <typename T>
653  void genericDecrypt(const Ctxt& ctxt, const SecKey& sKey, T& array) const
654  {
655  assertEq(&context,
656  &ctxt.getContext(),
657  "Cannot decrypt when ciphertext has different context than "
658  "EncryptedArray");
659  NTL::ZZX pp;
660  sKey.Decrypt(pp, ctxt);
661  decode(array, pp);
662  }
663 };
664 
667 {
668  const Context& context;
669  const PAlgebraModCx& alMod;
670  zzX iEncoded; // an encoded plaintext with i in all the slots
671 
672 public:
673  static double roundedSize(double x)
674  {
675  long rounded = ceil(fabs(x));
676  if (rounded < 1)
677  rounded = 1;
678  return double(1L << NTL::NumBits(rounded - 1));
679  }
680 
681  double encodei(zzX& ptxt, long precision = -1) const; // encode i in all slots
682 
683  explicit EncryptedArrayCx(const Context& _context) :
684  context(_context), alMod(context.alMod.getCx())
685  {
686  clear(iEncoded);
687  }
688  EncryptedArrayCx(const Context& _context, const PAlgebraModCx& _alMod) :
689  context(_context), alMod(_alMod)
690  {
691  clear(iEncoded);
692  }
693 
694  // conversion between std::vectors of complex, real, and integers
695  static void convert(std::vector<cx_double>& out,
696  const std::vector<double>& in)
697  {
698  resize(out, lsize(in));
699  for (long i = 0; i < lsize(in); i++)
700  out[i] = in[i];
701  }
702  static void convert(std::vector<double>& out,
703  const std::vector<cx_double>& in)
704  {
705  resize(out, lsize(in));
706  for (long i = 0; i < lsize(in); i++)
707  out[i] = in[i].real();
708  }
709  static void convert(std::vector<cx_double>& out, const std::vector<long>& in)
710  {
711  resize(out, lsize(in));
712  for (long i = 0; i < lsize(in); i++)
713  out[i] = in[i];
714  }
715  static void convert(std::vector<long>& out, const std::vector<cx_double>& in)
716  {
717  resize(out, lsize(in));
718  for (long i = 0; i < lsize(in); i++)
719  out[i] = std::round(in[i].real());
720  }
721 
722  EncryptedArrayBase* clone() const override
723  {
724  return new EncryptedArrayCx(*this);
725  }
726 
727  const zzX& getiEncoded() const;
728  PA_tag getTag() const override { return PA_cx_tag; }
729  const Context& getContext() const override { return context; }
730  const PAlgebra& getPAlgebra() const override { return alMod.getZMStar(); }
731  long getDegree() const override { return 2L; }
732 
733  void rotate(Ctxt& ctxt, long k) const override;
734  void shift(Ctxt& ctxt, long k) const override;
735  void rotate1D(Ctxt& ctxt, long i, long k, bool dc = false) const override;
736  void shift1D(Ctxt& ctxt, long i, long k) const override;
737 
738  long getP2R() const override { return alMod.getPPowR(); }
739 
740  /* Begin BGV functions. They will simply throw here. */
741  // encode
748  void encode(UNUSED zzX& ptxt,
749  UNUSED const std::vector<long>& array) const override
750  {
751  throw LogicError("Unimplemented: EncryptedArrayCx::encode for BGV type");
752  }
759  void encode(UNUSED NTL::ZZX& ptxt,
760  UNUSED const std::vector<long>& array) const override
761  {
762  throw LogicError("Unimplemented: EncryptedArrayCx::encode for BGV type");
763  }
770  void encode(UNUSED zzX& ptxt,
771  UNUSED const std::vector<zzX>& array) const override
772  {
773  throw LogicError("Unimplemented: EncryptedArrayCx::encode for BGV type");
774  }
781  void encode(UNUSED zzX& ptxt,
782  UNUSED const PlaintextArray& array) const override
783  {
784  throw LogicError("Unimplemented: EncryptedArrayCx::encode for BGV type");
785  }
792  void encode(UNUSED NTL::ZZX& ptxt,
793  UNUSED const std::vector<NTL::ZZX>& array) const override
794  {
795  throw LogicError("Unimplemented: EncryptedArrayCx::encode for BGV type");
796  }
803  void encode(UNUSED NTL::ZZX& ptxt,
804  UNUSED const PlaintextArray& array) const override
805  {
806  throw LogicError("Unimplemented: EncryptedArrayCx::encode for BGV type");
807  }
808 
809  // decode
816  void decode(UNUSED std::vector<long>& array,
817  UNUSED const NTL::ZZX& ptxt) const override
818  {
819  throw LogicError("Unimplemented: EncryptedArrayCx::decode for BGV type");
820  }
827  void decode(UNUSED std::vector<NTL::ZZX>& array,
828  UNUSED const NTL::ZZX& ptxt) const override
829  {
830  throw LogicError("Unimplemented: EncryptedArrayCx::decode for BGV type");
831  }
838  void decode(UNUSED PlaintextArray& array,
839  UNUSED const NTL::ZZX& ptxt) const override
840  {
841  throw LogicError("Unimplemented: EncryptedArrayCx::decode for BGV type");
842  }
843 
844  // random
850  void random(UNUSED std::vector<NTL::ZZX>& array) const override
851  {
852  throw LogicError("Unimplemented: EncryptedArrayCx::decode for BGV type");
853  }
854 
855  // decrypt
863  void decrypt(UNUSED const Ctxt& ctxt,
864  UNUSED const SecKey& sKey,
865  UNUSED std::vector<long>& ptxt) const override
866  {
867  throw LogicError("Unimplemented: EncryptedArrayCx::decrypt for BGV type");
868  }
876  void decrypt(UNUSED const Ctxt& ctxt,
877  UNUSED const SecKey& sKey,
878  UNUSED std::vector<NTL::ZZX>& ptxt) const override
879  {
880  throw LogicError("Unimplemented: EncryptedArrayCx::decrypt for BGV type");
881  }
889  void decrypt(UNUSED const Ctxt& ctxt,
890  UNUSED const SecKey& sKey,
891  UNUSED PlaintextArray& ptxt) const override
892  {
893  throw LogicError("Unimplemented: EncryptedArrayCx::decrypt for BGV type");
894  }
895 
896  // buildLinPolyCoeffs
903  void buildLinPolyCoeffs(UNUSED std::vector<NTL::ZZX>& C,
904  UNUSED const std::vector<NTL::ZZX>& L) const override
905  {
906  throw LogicError("Unimplemented: "
907  "EncryptedArrayCx::buildLinPolyCoeffs for BGV type");
908  }
909  /* End BGV functions. */
910 
911  // These EaCx-specific encoding routines return the
912  // scaling factor that was used in the encoding routine
913  double encode(zzX& ptxt,
914  const std::vector<cx_double>& array,
915  double useThisSize,
916  long precision = -1) const;
917  double encode(zzX& ptxt,
918  const std::vector<double>& array,
919  double useThisSize,
920  long precision = -1) const
921  {
922  std::vector<cx_double> tmp;
923  convert(tmp, array);
924  return encode(ptxt, tmp, useThisSize, precision);
925  }
926  double encode(zzX& ptxt,
927  const std::vector<long>& array,
928  double useThisSize,
929  long precision = -1) const
930  {
931  std::vector<cx_double> tmp;
932  convert(tmp, array);
933  return encode(ptxt, tmp, useThisSize, precision);
934  }
935 
945  template <typename Scheme>
946  double encode(zzX& out,
947  const Ptxt<Scheme>& ptxt,
948  double useThisSize,
949  long precision = -1) const
950  {
951  return encode(out, ptxt.getSlotRepr(), useThisSize, precision);
952  }
953 
954  // VJS-FIXME: why do some encode functions have a
955  // default value for useThisSize and others do not???
956  // It's very confusing
957 
958  double encode(zzX& ptxt,
959  double aSingleNumber,
960  double useThisSize = -1,
961  long precision = -1) const;
962 
963  template <typename PTXT>
964  double encode(NTL::ZZX& ptxt,
965  const PTXT& pt,
966  double useThisSize = -1,
967  long precision = -1) const
968  {
969  zzX tmp;
970  double f = encode(tmp, pt, useThisSize, precision);
971  ::helib::convert(ptxt, tmp);
972  return f;
973  }
974 
975  void encryptOneNum(Ctxt& ctxt,
976  const PubKey& key,
977  double num,
978  double useThisSize = -1,
979  long precision = -1) const
980  {
981  assertEq(&getContext(),
982  &ctxt.getContext(),
983  "Cannot encrypt when ciphertext has different context than "
984  "EncryptedArray");
985  if (useThisSize <= 0.0)
986  useThisSize = roundedSize(num); // rounded to power of two
987  zzX pp; // Convert num into a plaintext polynomial
988  double f = encode(pp, num, useThisSize, precision);
989 
990  key.CKKSencrypt(ctxt, pp, useThisSize, f); // encrypt resulting polynomial
991  }
992 
993  template <typename PTXT>
994  void encrypt(Ctxt& ctxt,
995  const PubKey& key,
996  const PTXT& ptxt,
997  double useThisSize,
998  long precision = -1) const
999  {
1000  assertEq(&getContext(),
1001  &ctxt.getContext(),
1002  "Cannot encrypt when ciphertext has different context than "
1003  "EncryptedArray");
1004  zzX pp;
1005  double f = encode(pp, ptxt, useThisSize, precision);
1006  // Convert into a polynomial
1007  key.CKKSencrypt(ctxt, pp, useThisSize, f); // encrypt the polynomial
1008  }
1009 
1010  template <typename PTXT>
1011  void encrypt(Ctxt& ctxt, const PubKey& key, const PTXT& ptxt) const
1012  {
1013  encrypt(ctxt, key, ptxt, -1.0, -1);
1014  }
1015 
1016  // The methods below override EncryptedArrayBase, they use
1017  // the default size=0 and precision=0, which yield size=1
1018  // and precision=2^{-alMod.getR()-1}
1019  void encodeUnitSelector(zzX& ptxt, long i) const override
1020  {
1021  std::vector<cx_double> v(this->size(), cx_double(0.0));
1022  v.at(i) = cx_double(1.0, 0.0);
1023  encode(ptxt, v, /*size=*/1.0, /*default precision*/ -1);
1024  } // The implicit scaling factor is encodeScalingFactor() below
1025 
1026  // A bound on the rounding error for encoding
1027  double encodeRoundingError() const
1028  {
1029  const Context& context = getContext();
1030  long m = context.zMStar.getM();
1031 
1032  // VJS-FIXME: it seems to me that the m should be phi(m),
1033  // or m/2 if m is assumed to be a power of two.
1034  // Also, for the power of two case, noiseBoundForUniform
1035  // is a bit too pessimistic, as this is the circularly symmetric
1036  // case.
1037  return context.noiseBoundForUniform(0.5, m);
1038  }
1039  // The scaling factor to use when encoding/decoding plaintext elements
1040  long encodeScalingFactor(long precision = -1, double roundErr = -1.0) const
1041  {
1042  assertTrue<InvalidArgument>(precision < NTL_SP_BOUND,
1043  "Precision exceeds max single precision bound");
1044  if (precision <= 0)
1045  precision = (1L << alMod.getR());
1046  if (roundErr < 0)
1047  roundErr = encodeRoundingError();
1048 
1049  // VJS-FIXME: the computation of f and/or return value could overflow
1050 
1051  long f = ceil(precision * roundErr);
1052  // We round the factor up to the next power of two
1053  return (1L << NTL::NextPowerOfTwo(f));
1054  }
1055 
1056  void decode(std::vector<cx_double>& array,
1057  const zzX& ptxt,
1058  double scaling) const;
1059 
1060  void decode(std::vector<cx_double>& array,
1061  const NTL::ZZX& ptxt,
1062  double scaling) const
1063  {
1064  zzX tmp;
1065  ::helib::convert(tmp, ptxt);
1066  decode(array, tmp, scaling);
1067  }
1068 
1069  void decode(std::vector<double>& array, const zzX& ptxt, double scaling) const
1070  {
1071  std::vector<cx_double> v;
1072  decode(v, ptxt, scaling);
1073  convert(array, v);
1074  }
1075 
1076  void decode(std::vector<double>& array,
1077  const NTL::ZZX& ptxt,
1078  double scaling) const
1079  {
1080  std::vector<cx_double> v;
1081  decode(v, ptxt, scaling);
1082  convert(array, v);
1083  }
1084 
1085  void random(std::vector<cx_double>& array, double rad = 1.0) const;
1086  void random(std::vector<double>& array, double rad = 1.0) const
1087  {
1088  std::vector<cx_double> v;
1089  random(v, rad);
1090  convert(array, v);
1091  }
1092  void random(std::vector<long>& array) const override
1093  {
1094  std::vector<cx_double> v;
1095  random(v, 1.0);
1096  convert(array, v);
1097  }
1098 
1099  void decrypt(const Ctxt& ctxt,
1100  const SecKey& sKey,
1101  std::vector<cx_double>& ptxt) const override;
1102  void decrypt(const Ctxt& ctxt,
1103  const SecKey& sKey,
1104  std::vector<double>& ptxt) const override
1105  {
1106  std::vector<cx_double> v;
1107  decrypt(ctxt, sKey, v);
1108  convert(ptxt, v);
1109  }
1110 
1120  template <typename Scheme>
1121  void decrypt(const Ctxt& ctxt, const SecKey& sKey, Ptxt<Scheme>& ptxt) const
1122  {
1123  std::vector<cx_double> ptxtArray;
1124  decrypt(ctxt, sKey, ptxtArray);
1125  ptxt.setData(std::move(ptxtArray));
1126  }
1127 
1128  void extractRealPart(Ctxt& c) const;
1129 
1135  template <typename Scheme>
1137  {
1138  p = p.real();
1139  }
1140 
1146  template <typename Scheme>
1148  {
1149  p = p.imag();
1150  }
1151 
1155  void extractImPart(Ctxt& c, DoubleCRT* dcrt = nullptr) const;
1156 
1167 
1169  void buildLinPolyCoeffs(std::vector<zzX>& C,
1170  const cx_double& oneImage,
1171  const cx_double& iImage,
1172  long precision = 0) const;
1173 
1175  void buildLinPolyCoeffs(std::vector<zzX>& C,
1176  const std::vector<cx_double>& oneImages,
1177  const std::vector<cx_double>& iImages,
1178  long precision = 0) const;
1180 };
1181 
1182 // plaintextAutomorph: Compute b(X) = a(X^k) mod Phi_m(X).
1183 template <typename RX, typename RXModulus>
1185  const RX& a,
1186  long k,
1187  long m,
1188  const RXModulus& PhimX)
1189 {
1190  // compute b(X) = a(X^k) mod (X^m-1)
1191  if (k == 1 || deg(a) <= 0) {
1192  bb = a;
1193  return;
1194  }
1195 
1196  RX b;
1197  b.SetLength(m);
1198  NTL::mulmod_precon_t precon = NTL::PrepMulModPrecon(k, m);
1199  for (long j = 0; j <= deg(a); j++)
1200  b[NTL::MulModPrecon(j, k, m, precon)] = a[j]; // b[j*k mod m] = a[j]
1201  b.normalize();
1202 
1203  rem(bb, b, PhimX); // reduce modulo the m'th cyclotomic
1204 }
1205 
1206 // same as above, but k = g_i^j mod m.
1207 // also works with i == ea.getPalgebra().numOfGens(),
1208 // which means Frobenius
1209 
1210 template <typename RX, typename type>
1212  const RX& a,
1213  long i,
1214  long j,
1215  const EncryptedArrayDerived<type>& ea)
1216 {
1217  const PAlgebra& zMStar = ea.getPAlgebra();
1218  const auto& F = ea.getTab().getPhimXMod();
1219  long k = zMStar.genToPow(i, j);
1220  long m = zMStar.getM();
1221  plaintextAutomorph(b, a, k, m, F);
1222 }
1223 
1225 EncryptedArrayBase* buildEncryptedArray(const Context& context,
1226  const PAlgebraMod& alMod,
1227  const NTL::ZZX& G = NTL::ZZX::zero());
1228 
1233 {
1234 private:
1235  const PAlgebraMod& alMod;
1236  cloned_ptr<EncryptedArrayBase> rep;
1237 
1238 public:
1240  EncryptedArray(const Context& context, const NTL::ZZX& G = NTL::ZZX(1, 1)) :
1241  alMod(context.alMod), rep(buildEncryptedArray(context, context.alMod, G))
1242  {}
1244  EncryptedArray(const Context& context, const PAlgebraMod& _alMod) :
1245  alMod(_alMod), rep(buildEncryptedArray(context, _alMod))
1246  {}
1247 
1248  // copy constructor:
1249 
1251  {
1252  if (this == &other)
1253  return *this;
1254  assertEq(&alMod,
1255  &other.alMod,
1256  "Cannot assign EncryptedArrays with different algebras");
1257  rep = other.rep;
1258  return *this;
1259  }
1260 
1264  template <typename type>
1266  {
1267  return dynamic_cast<const EncryptedArrayDerived<type>&>(*rep);
1268  }
1269 
1270  const EncryptedArrayCx& getCx() const
1271  {
1272  return dynamic_cast<const EncryptedArrayCx&>(*rep);
1273  }
1274 
1277 
1278  PA_tag getTag() const { return rep->getTag(); }
1279 
1280  template <template <typename> class T, typename... Args>
1281  void dispatch(Args&&... args) const
1282  {
1283  switch (getTag()) {
1284  case PA_GF2_tag: {
1286  static_cast<const EncryptedArrayDerived<PA_GF2>*>(rep.get_ptr());
1287  p->dispatch<T>(std::forward<Args>(args)...);
1288  break;
1289  }
1290  case PA_zz_p_tag: {
1292  static_cast<const EncryptedArrayDerived<PA_zz_p>*>(rep.get_ptr());
1293  p->dispatch<T>(std::forward<Args>(args)...);
1294  break;
1295  }
1296  default:
1297  throw RuntimeError("EncryptedArray: bad tag");
1298  }
1299  }
1300 
1301  const Context& getContext() const { return rep->getContext(); }
1302  const PAlgebraMod& getAlMod() const { return alMod; }
1303  const PAlgebra& getPAlgebra() const { return rep->getPAlgebra(); }
1304  long getDegree() const { return rep->getDegree(); }
1305  void rotate(Ctxt& ctxt, long k) const { rep->rotate(ctxt, k); }
1306  void shift(Ctxt& ctxt, long k) const { rep->shift(ctxt, k); }
1307  void rotate1D(Ctxt& ctxt, long i, long k, bool dc = false) const
1308  {
1309  rep->rotate1D(ctxt, i, k, dc);
1310  }
1311  void shift1D(Ctxt& ctxt, long i, long k) const { rep->shift1D(ctxt, i, k); }
1312 
1313  template <typename PTXT, typename ARRAY>
1314  void encode(PTXT& ptxt, const ARRAY& array) const
1315  {
1316  rep->encode(ptxt, array);
1317  }
1318 
1319  void encodeUnitSelector(zzX& ptxt, long i) const
1320  {
1321  rep->encodeUnitSelector(ptxt, i);
1322  }
1323 
1324  template <typename PTXT, typename ARRAY>
1325  void decode(ARRAY& array, const PTXT& ptxt) const
1326  {
1327  rep->decode(array, ptxt);
1328  }
1329 
1330  template <typename T>
1331  void random(std::vector<T>& array) const
1332  {
1333  rep->random(array);
1334  }
1335 
1336  template <typename T>
1337  void encrypt(Ctxt& ctxt, const PubKey& pKey, const T& ptxt) const
1338  {
1339  rep->encrypt(ctxt, pKey, ptxt);
1340  }
1341 
1342  template <typename T>
1343  void decrypt(const Ctxt& ctxt, const SecKey& sKey, T& ptxt) const
1344  {
1345  rep->decrypt(ctxt, sKey, ptxt);
1346  }
1347 
1348  void buildLinPolyCoeffs(std::vector<NTL::ZZX>& C,
1349  const std::vector<NTL::ZZX>& L) const
1350  {
1351  rep->buildLinPolyCoeffs(C, L);
1352  }
1353 
1354  void restoreContext() const { rep->restoreContext(); }
1355  void restoreContextForG() const { rep->restoreContextForG(); }
1356 
1357  long size() const { return rep->size(); }
1358  long dimension() const { return rep->dimension(); }
1359  long sizeOfDimension(long i) const { return rep->sizeOfDimension(i); }
1360  long nativeDimension(long i) const { return rep->nativeDimension(i); }
1361  long coordinate(long i, long k) const { return rep->coordinate(i, k); }
1362  long addCoord(long i, long k, long offset) const
1363  {
1364  return rep->addCoord(i, k, offset);
1365  }
1366 
1369  template <typename U>
1370  void rotate1D(std::vector<U>& out,
1371  const std::vector<U>& in,
1372  long i,
1373  long offset) const
1374  {
1375  rep->rotate1D(out, in, i, offset);
1376  }
1378 };
1379 
1380 // NewPlaintextArray
1381 
1383 { // purely abstract interface
1384 public:
1385  virtual ~PlaintextArrayBase() {}
1386  virtual void print(std::ostream& s) const = 0;
1387 };
1388 
1389 template <typename type>
1391 {
1392 public:
1393  PA_INJECT(type)
1394 
1395  std::vector<RX> data;
1396 
1397  virtual void print(std::ostream& s) const { s << data; }
1398 };
1399 
1401 {
1402 private:
1403  NTL::CloneablePtr<PlaintextArrayBase> rep;
1404 
1405  template <typename type>
1406  class ConstructorImpl
1407  {
1408  public:
1409  PA_INJECT(type)
1410 
1411  static void apply(const EncryptedArrayDerived<type>& ea, PlaintextArray& pa)
1412  {
1413  NTL::CloneablePtr<PlaintextArrayDerived<type>> ptr =
1414  NTL::MakeCloneable<PlaintextArrayDerived<type>>();
1415  ptr->data.resize(ea.size());
1416  pa.rep = ptr;
1417  }
1418  };
1419 
1420 public:
1422  {
1423  ea.dispatch<ConstructorImpl>(*this);
1424  }
1425 
1426  PlaintextArray(const PlaintextArray& other) : rep(other.rep.clone()) {}
1428  {
1429  rep = other.rep.clone();
1430  return *this;
1431  }
1432 
1433  template <typename type>
1434  std::vector<typename type::RX>& getData()
1435  {
1436  return (dynamic_cast<PlaintextArrayDerived<type>&>(*rep)).data;
1437  }
1438 
1439  template <typename type>
1440  const std::vector<typename type::RX>& getData() const
1441  {
1442  return (dynamic_cast<PlaintextArrayDerived<type>&>(*rep)).data;
1443  }
1444 
1445  void print(std::ostream& s) const { rep->print(s); }
1446 };
1447 
1448 inline std::ostream& operator<<(std::ostream& s, const PlaintextArray& pa)
1449 {
1450  pa.print(s);
1451  return s;
1452 }
1453 
1454 void rotate(const EncryptedArray& ea, PlaintextArray& pa, long k);
1455 void shift(const EncryptedArray& ea, PlaintextArray& pa, long k);
1456 
1457 void encode(const EncryptedArray& ea,
1458  PlaintextArray& pa,
1459  const std::vector<long>& array);
1460 void encode(const EncryptedArray& ea,
1461  PlaintextArray& pa,
1462  const std::vector<NTL::ZZX>& array);
1463 void encode(const EncryptedArray& ea, PlaintextArray& pa, long val);
1464 void encode(const EncryptedArray& ea, PlaintextArray& pa, const NTL::ZZX& val);
1465 
1466 void random(const EncryptedArray& ea, PlaintextArray& pa);
1467 
1468 void decode(const EncryptedArray& ea,
1469  std::vector<long>& array,
1470  const PlaintextArray& pa);
1471 void decode(const EncryptedArray& ea,
1472  std::vector<NTL::ZZX>& array,
1473  const PlaintextArray& pa);
1474 
1475 bool equals(const EncryptedArray& ea,
1476  const PlaintextArray& pa,
1477  const PlaintextArray& other);
1478 bool equals(const EncryptedArray& ea,
1479  const PlaintextArray& pa,
1480  const std::vector<long>& other);
1481 bool equals(const EncryptedArray& ea,
1482  const PlaintextArray& pa,
1483  const std::vector<NTL::ZZX>& other);
1484 
1485 void add(const EncryptedArray& ea,
1486  PlaintextArray& pa,
1487  const PlaintextArray& other);
1488 void sub(const EncryptedArray& ea,
1489  PlaintextArray& pa,
1490  const PlaintextArray& other);
1491 void mul(const EncryptedArray& ea,
1492  PlaintextArray& pa,
1493  const PlaintextArray& other);
1494 void negate(const EncryptedArray& ea, PlaintextArray& pa);
1495 
1496 void frobeniusAutomorph(const EncryptedArray& ea, PlaintextArray& pa, long j);
1497 void frobeniusAutomorph(const EncryptedArray& ea,
1498  PlaintextArray& pa,
1499  const NTL::Vec<long>& vec);
1500 
1501 void applyPerm(const EncryptedArray& ea,
1502  PlaintextArray& pa,
1503  const NTL::Vec<long>& pi);
1504 
1505 void power(const EncryptedArray& ea, PlaintextArray& pa, long e);
1506 
1507 // Following are functions for performing "higher level"
1508 // operations on "encrypted arrays". There is really no
1509 // reason for these to be members of the EncryptedArray class,
1510 // so they are just declared as separate functions.
1511 
1514 void runningSums(const EncryptedArray& ea, Ctxt& ctxt);
1515 // The implementation uses O(log n) shift operations.
1516 
1519 void totalSums(const EncryptedArray& ea, Ctxt& ctxt);
1520 
1523 void mapTo01(const EncryptedArray& ea, Ctxt& ctxt);
1524 // Implemented in eqtesting.cpp. We compute
1525 // x^{p^d-1} = x^{(1+p+...+p^{d-1})*(p-1)}
1526 // by setting y=x^{p-1} and then outputting y * y^p * ... * y^{p^{d-1}},
1527 // with exponentiation to powers of p done via Frobenius.
1528 
1530 template <typename Scheme>
1531 void mapTo01(const EncryptedArray&, Ptxt<Scheme>& ptxt);
1532 
1537 void incrementalZeroTest(Ctxt* res[],
1538  const EncryptedArray& ea,
1539  const Ctxt& ctxt,
1540  long n);
1541 // Complexity: O(d + n log d) smart automorphisms
1542 // O(n d)
1543 
1544 /*************** End linear transformation functions ****************/
1545 /********************************************************************/
1546 
1548 
1564 void applyLinPoly1(const EncryptedArray& ea,
1567  Ctxt& ctxt,
1568  const std::vector<NTL::ZZX>& C);
1569 
1573 void applyLinPolyMany(const EncryptedArray& ea,
1574  Ctxt& ctxt,
1575  const std::vector<std::vector<NTL::ZZX>>& Cvec);
1576 
1580 template <typename P> // P can be ZZX or DoubleCRT
1581 void applyLinPolyLL(Ctxt& ctxt, const std::vector<P>& encodedC, long d);
1583 
1584 } // namespace helib
1585 
1586 #endif // ifndef HELIB_ENCRYPTEDARRAY_H
An object that mimics the functionality of the Ctxt object, and acts as a convenient entry point for ...
Definition: Ptxt.h:280
void rotate(const EncryptedArray &ea, PlaintextArray &pa, long k)
Definition: EncryptedArray.cpp:760
long OrderOf(long i) const
The order of i'th generator (if any)
Definition: PAlgebra.h:217
const Context & getContext() const
Definition: Ctxt.h:819
void mul(const EncryptedArray &ea, PlaintextArray &pa, const PlaintextArray &other)
Definition: EncryptedArray.cpp:1061
void rotate1D(Ctxt &ctxt, long i, long k, bool dc=false) const
Definition: EncryptedArray.h:1307
virtual void decode(std::vector< long > &array, const NTL::ZZX &ptxt) const =0
long lsize(const std::vector< T > &v)
Size of STL vector as a long (rather than unsigned long)
Definition: NumbTh.h:702
long size() const
Definition: EncryptedArray.h:1357
void encode(UNUSED NTL::ZZX &ptxt, UNUSED const std::vector< long > &array) const override
Unimplemented encode function for BGV. It will always throw helib::LogicError.
Definition: EncryptedArray.h:759
const PAlgebra & getPAlgebra() const override
Definition: EncryptedArray.h:730
Ptxt< Scheme > real() const
Extract the real part of a CKKS plaintext.
long addCoord(long i, long k, long offset) const
Definition: EncryptedArray.h:1362
long getM() const
Returns m.
Definition: PAlgebra.h:162
long encodeScalingFactor(long precision=-1, double roundErr=-1.0) const
Definition: EncryptedArray.h:1040
virtual void encode(NTL::ZZX &ptxt, const std::vector< NTL::ZZX > &array) const =0
Inherits from Exception and std::runtime_error.
Definition: exceptions.h:105
void encrypt(Ctxt &ctxt, const PubKey &key, const PTXT &ptxt) const
Definition: EncryptedArray.h:200
void random(std::vector< T > &array) const
Definition: EncryptedArray.h:1331
virtual void restoreContext() const
Definition: EncryptedArray.h:263
double encode(NTL::ZZX &ptxt, const PTXT &pt, double useThisSize=-1, long precision=-1) const
Definition: EncryptedArray.h:964
virtual void encode(zzX &ptxt, const PlaintextArray &array) const =0
long getNSlots() const
The number of plaintext slots = phi(m)/ord(p)
Definition: PAlgebra.h:186
double encode(zzX &ptxt, const std::vector< double > &array, double useThisSize, long precision=-1) const
Definition: EncryptedArray.h:917
const EncryptedArrayCx & getCx() const
Definition: EncryptedArray.h:1270
std::vector< RX > data
Definition: EncryptedArray.h:1395
void random(std::vector< RX > &array) const
Definition: EncryptedArray.h:578
void buildLinPolyCoeffs(UNUSED std::vector< NTL::ZZX > &C, UNUSED const std::vector< NTL::ZZX > &L) const override
Unimplemented buildLinPolyCoeffs function for BGV. It will always throw helib::LogicError.
Definition: EncryptedArray.h:903
void decrypt(UNUSED const Ctxt &ctxt, UNUSED const SecKey &sKey, UNUSED std::vector< long > &ptxt) const override
Unimplemented decrypt function for BGV. It will always throw helib::LogicError.
Definition: EncryptedArray.h:863
virtual void encode(NTL::ZZX &ptxt, const std::vector< NTL::ZZX > &array) const override
Definition: EncryptedArray.h:485
const std::vector< SlotType > & getSlotRepr() const
Get the data held in the slots as a std::vector<SlotType>.
Definition: Ptxt.cpp:230
std::vector< typename type::RX > & getData()
Definition: EncryptedArray.h:1434
virtual const PAlgebra & getZMStar() const override
Returns reference to underlying PAlgebra object.
Definition: PAlgebra.h:611
NTL::Vec< long > zzX
Definition: zzX.h:24
double noiseBoundForUniform(double magBound, long degBound) const
Definition: Context.h:188
long genToPow(long i, long j) const
the i'th generator to the power j mod m
Definition: PAlgebra.cpp:606
virtual long getP2R() const =0
void encrypt(Ctxt &ctxt, const PubKey &key, const PTXT &ptxt) const
Definition: EncryptedArray.h:1011
EncryptedArrayBase * clone() const override
Definition: EncryptedArray.h:722
void random(std::vector< long > &array) const override
Definition: EncryptedArray.h:1092
PA_tag getTag() const override
Definition: EncryptedArray.h:728
long addCoord(long i, long k, long offset) const
adds offset to index k in the i'th dimension
Definition: PAlgebra.h:272
EncryptedArrayDerived & operator=(const EncryptedArrayDerived &other)
Definition: EncryptedArray.h:356
virtual void encode(NTL::ZZX &ptxt, const PlaintextArray &array) const =0
Implementing polynomials (elements in the ring R_Q) in double-CRT form.
Definition: DoubleCRT.h:76
Ptxt< Scheme > imag() const
Extract the imaginary part of a CKKS plaintext.
virtual void rotate1D(Ctxt &ctxt, long i, long k, bool dc=false) const override
right-rotate k positions along the i'th dimension
Definition: EncryptedArray.cpp:64
void plaintextAutomorph(RX &bb, const RX &a, long k, long m, const RXModulus &PhimX)
Definition: EncryptedArray.h:1184
void encode(UNUSED NTL::ZZX &ptxt, UNUSED const PlaintextArray &array) const override
Unimplemented encode function for BGV. It will always throw helib::LogicError.
Definition: EncryptedArray.h:803
@ PA_GF2_tag
Definition: PAlgebra.h:298
void extractImPart(Ptxt< Scheme > &p) const
Extract the imaginary part of a CKKS plaintext.
Definition: EncryptedArray.h:1147
virtual PA_tag getTag() const =0
void random(UNUSED std::vector< NTL::ZZX > &array) const override
Unimplemented random function for BGV. It will always throw helib::LogicError.
Definition: EncryptedArray.h:850
void PolyRed(NTL::ZZX &out, const NTL::ZZX &in, long q, bool abs=false)
Reduce all the coefficients of a polynomial modulo q.
Definition: NumbTh.cpp:751
bool nativeDimension(long i) const
Is rotations in given dimension a "native" operation?
Definition: EncryptedArray.h:278
void rotate1D(std::vector< U > &out, const std::vector< U > &in, long i, long offset) const
rotate an array by offset in the i'th dimension (output should not alias input)
Definition: EncryptedArray.h:295
virtual void decrypt(const Ctxt &ctxt, const SecKey &sKey, PlaintextArray &ptxt) const override
Definition: EncryptedArray.h:552
Inherits from Exception and std::logic_error.
Definition: exceptions.h:68
virtual long getDegree() const override
Definition: EncryptedArray.h:420
Auxiliary structure to support encoding/decoding slots.
Definition: PAlgebra.h:475
virtual void restoreContext() const override
Restores the NTL context for p^r.
Definition: PAlgebra.h:626
virtual void shift1D(Ctxt &ctxt, long i, long k) const =0
Right shift k positions along the i'th dimension with zero fill.
void applyPerm(const EncryptedArray &ea, PlaintextArray &pa, const NTL::Vec< long > &pi)
Definition: EncryptedArray.cpp:1183
virtual void decode(std::vector< long > &array, const NTL::ZZX &ptxt) const override
Definition: EncryptedArray.h:502
void rotate(Ctxt &ctxt, long k) const
Definition: EncryptedArray.h:1305
void sub(const EncryptedArray &ea, PlaintextArray &pa, const PlaintextArray &other)
Definition: EncryptedArray.cpp:1033
void restoreContextForG() const
Definition: EncryptedArray.h:1355
long addCoord(long i, long k, long offset) const
adds offset to index k in the i'th dimension
Definition: EncryptedArray.h:287
void shift(Ctxt &ctxt, long k) const
Definition: EncryptedArray.h:1306
void assertEq(const T &a, const T &b, const std::string &message)
Definition: assertions.h:108
long getDegG() const
Definition: PAlgebra.h:496
long getDegree() const override
Definition: EncryptedArray.h:731
void decode(ARRAY &array, const PTXT &ptxt) const
Definition: EncryptedArray.h:1325
const EncryptedArrayDerived< type > & getDerived(type) const
downcast operator example: const EncryptedArrayDerived<PA_GF2>& rep = ea.getDerived(PA_GF2());
Definition: EncryptedArray.h:1265
A simple wrapper for a smart pointer to an EncryptedArrayBase. This is the interface that higher-leve...
Definition: EncryptedArray.h:1233
virtual void shift(Ctxt &ctxt, long k) const =0
Non-cyclic right shift with zero fill E.g., shifting ctxt=Enc(1 2 3 ... n) by k=1 gives Enc(0 1 2....
virtual void rotate1D(Ctxt &ctxt, long i, long k, bool dc=false) const =0
right-rotate k positions along the i'th dimension
void rem(NTL::zz_pX &r, const NTL::zz_pX &a, const zz_pXModulus1 &ff)
Definition: NumbTh.cpp:1875
virtual const PAlgebra & getPAlgebra() const override
Definition: EncryptedArray.h:416
void shift(const EncryptedArray &ea, PlaintextArray &pa, long k)
Definition: EncryptedArray.cpp:787
void restoreContextForG() const
Definition: PAlgebra.h:497
void applyLinPolyLL(Ctxt &ctxt, const std::vector< P > &encodedC, long d)
Definition: EncryptedArray.cpp:708
const std::vector< typename type::RX > & getData() const
Definition: EncryptedArray.h:1440
void decode(UNUSED std::vector< NTL::ZZX > &array, UNUSED const NTL::ZZX &ptxt) const override
Unimplemented decode function for BGV. It will always throw helib::LogicError.
Definition: EncryptedArray.h:827
EncryptedArrayDerived(const Context &_context, const RX &_G, const PAlgebraMod &_tab)
Definition: EncryptedArray.cpp:54
long nativeDimension(long i) const
Definition: EncryptedArray.h:1360
virtual void decrypt(const Ctxt &ctxt, const SecKey &sKey, PlaintextArray &ptxt) const =0
long dimension() const
Number of dimensions of hypercube.
Definition: EncryptedArray.h:272
virtual const PAlgebra & getPAlgebra() const =0
EncryptedArrayDerived(const EncryptedArrayDerived &other)
Definition: EncryptedArray.h:341
void decrypt(UNUSED const Ctxt &ctxt, UNUSED const SecKey &sKey, UNUSED std::vector< cx_double > &ptxt) const override
Unimplemented decrypt function for CKKS. It will always throw helib::LogicError.
Definition: EncryptedArray.h:465
virtual void rotate(Ctxt &ctxt, long k) const override
Right rotation as a linear array. E.g., rotating ctxt=Enc(1 2 3 ... n) by k=1 gives Enc(n 1 2 ....
Definition: EncryptedArray.cpp:178
The structure of (Z/mZ)* /(p)
Definition: PAlgebra.h:77
void decode(const EncryptedArray &ea, std::vector< long > &array, const PlaintextArray &pa)
Definition: EncryptedArray.cpp:899
virtual void encode(zzX &ptxt, const std::vector< zzX > &array) const override
Definition: EncryptedArray.h:491
void totalSums(const EncryptedArray &ea, Ctxt &ctxt)
Definition: EncryptedArray.cpp:561
void encode(zzX &ptxt, const std::vector< NTL::ZZX > &array) const
Definition: EncryptedArray.h:159
virtual long getDegree() const =0
virtual void buildLinPolyCoeffs(std::vector< NTL::ZZX > &C, const std::vector< NTL::ZZX > &L) const =0
Linearized polynomials. L describes a linear map M by describing its action on the standard power bas...
long getP2R() const override
Definition: EncryptedArray.h:738
virtual void decrypt(const Ctxt &ctxt, const SecKey &sKey, std::vector< NTL::ZZX > &ptxt) const =0
virtual class for data-movement operations on arrays of slots
Definition: EncryptedArray.h:113
virtual void shift1D(Ctxt &ctxt, long i, long k) const override
Right shift k positions along the i'th dimension with zero fill.
Definition: EncryptedArray.cpp:127
virtual void encode(NTL::ZZX &ptxt, const std::vector< long > &array) const =0
A different derived class to be used for the approximate-numbers scheme.
Definition: EncryptedArray.h:667
void shift1D(Ctxt &ctxt, long i, long k) const
Definition: EncryptedArray.h:1311
virtual void decrypt(const Ctxt &ctxt, const SecKey &sKey, std::vector< double > &ptxt) const =0
long coordinate(long i, long k) const
returns coordinate of index k along the i'th dimension
Definition: EncryptedArray.h:281
long sizeOfDimension(long i) const
Definition: EncryptedArray.h:1359
virtual EncryptedArrayBase * clone() const =0
long size() const
Total size (# of slots) of hypercube.
Definition: EncryptedArray.h:269
Derived concrete implementation of EncryptedArrayBase.
Definition: EncryptedArray.h:315
virtual void random(std::vector< long > &array) const =0
virtual void encode(zzX &ptxt, const std::vector< long > &array) const override
Definition: EncryptedArray.h:480
void extractRealPart(Ctxt &c) const
Definition: EaCx.cpp:216
void encodeUnitSelector(zzX &ptxt, long i) const override
Encodes a std::vector with 1 at position i and 0 everywhere else.
Definition: EncryptedArray.h:1019
virtual void restoreContext() const override
Definition: EncryptedArray.h:409
void decrypt(UNUSED const Ctxt &ctxt, UNUSED const SecKey &sKey, UNUSED std::vector< NTL::ZZX > &ptxt) const override
Unimplemented decrypt function for BGV. It will always throw helib::LogicError.
Definition: EncryptedArray.h:876
static void convert(std::vector< cx_double > &out, const std::vector< long > &in)
Definition: EncryptedArray.h:709
virtual void random(std::vector< NTL::ZZX > &array) const override
Definition: EncryptedArray.h:525
void decrypt(UNUSED const Ctxt &ctxt, UNUSED const SecKey &sKey, UNUSED std::vector< double > &ptxt) const override
Unimplemented decrypt function for CKKS. It will always throw helib::LogicError.
Definition: EncryptedArray.h:451
virtual void encodeUnitSelector(zzX &ptxt, long i) const =0
Encodes a std::vector with 1 at position i and 0 everywhere else.
void clear(zzX &a)
Definition: zzX.h:28
void decode(UNUSED std::vector< long > &array, UNUSED const NTL::ZZX &ptxt) const override
Unimplemented decode function for BGV. It will always throw helib::LogicError.
Definition: EncryptedArray.h:816
const PAlgebra & getZMStar() const override
Returns reference to underlying PAlgebra object.
Definition: PAlgebra.h:774
void encryptOneNum(Ctxt &ctxt, const PubKey &key, double num, double useThisSize=-1, long precision=-1) const
Definition: EncryptedArray.h:975
const Context & getContext() const
Definition: EncryptedArray.h:1301
void encode(UNUSED NTL::ZZX &ptxt, UNUSED const std::vector< NTL::ZZX > &array) const override
Unimplemented encode function for BGV. It will always throw helib::LogicError.
Definition: EncryptedArray.h:792
virtual void random(std::vector< long > &array) const override
Definition: EncryptedArray.h:519
const PAlgebraMod & getAlMod() const
Definition: EncryptedArray.h:1302
const Context & getContext() const override
Definition: EncryptedArray.h:729
bool equals(const EncryptedArray &ea, const PlaintextArray &pa, const PlaintextArray &other)
Definition: EncryptedArray.cpp:957
PA_tag
Definition: PAlgebra.h:297
void encode(PTXT &ptxt, const ARRAY &array) const
Definition: EncryptedArray.h:1314
virtual void encode(zzX &ptxt, const std::vector< zzX > &array) const =0
virtual void buildLinPolyCoeffs(std::vector< NTL::ZZX > &C, const std::vector< NTL::ZZX > &L) const override
Linearized polynomials. L describes a linear map M by describing its action on the standard power bas...
Definition: EncryptedArray.cpp:599
void random(const EncryptedArray &ea, PlaintextArray &pa)
Definition: EncryptedArray.cpp:875
void buildLinPolyCoeffs(std::vector< NTL::ZZX > &C, const std::vector< NTL::ZZX > &L) const
Definition: EncryptedArray.h:1348
long sizeOfDimension(long i) const
Size of given dimension.
Definition: EncryptedArray.h:275
void rotate1D(std::vector< U > &out, const std::vector< U > &in, long i, long offset) const
Definition: EncryptedArray.h:434
void power(const EncryptedArray &ea, PlaintextArray &pa, long e)
Definition: EncryptedArray.cpp:1143
long getDegree() const
Definition: EncryptedArray.h:1304
virtual void encode(NTL::ZZX &ptxt, const std::vector< long > &array) const override
Definition: EncryptedArray.h:474
Definition: EncryptedArray.h:1401
virtual ~EncryptedArrayBase()
Definition: EncryptedArray.h:115
long getPPowR() const override
The value p^r.
Definition: PAlgebra.h:776
virtual void decrypt(const Ctxt &ctxt, const SecKey &sKey, std::vector< NTL::ZZX > &ptxt) const override
Definition: EncryptedArray.h:541
Definition: EncryptedArray.h:1383
bool SameOrd(long i) const
Is ord(i'th generator) the same as its order in (Z/mZ)^*?
Definition: PAlgebra.h:223
virtual void shift(Ctxt &ctxt, long k) const override
Non-cyclic right shift with zero fill E.g., shifting ctxt=Enc(1 2 3 ... n) by k=1 gives Enc(0 1 2....
Definition: EncryptedArray.cpp:286
void encode(UNUSED zzX &ptxt, UNUSED const std::vector< zzX > &array) const override
Unimplemented encode function for BGV. It will always throw helib::LogicError.
Definition: EncryptedArray.h:770
virtual void encodeUnitSelector(zzX &ptxt, long i) const override
Encodes a std::vector with 1 at position i and 0 everywhere else.
Definition: EncryptedArray.cpp:415
static double roundedSize(double x)
Definition: EncryptedArray.h:673
void resize(NTL::Vec< T > &v, long sz, const T &val)
Definition: NumbTh.h:744
long getPtxtSpace() const
Definition: Ctxt.h:822
void setData(const std::vector< SlotType > &data)
Set the data.
Definition: Ptxt.cpp:151
void encode(UNUSED zzX &ptxt, UNUSED const std::vector< long > &array) const override
Unimplemented encode function for BGV. It will always throw helib::LogicError.
Definition: EncryptedArray.h:748
void decode(std::vector< double > &array, const NTL::ZZX &ptxt, double scaling) const
Definition: EncryptedArray.h:1076
void rotate(Ctxt &ctxt, long k) const override
Right rotation as a linear array. E.g., rotating ctxt=Enc(1 2 3 ... n) by k=1 gives Enc(n 1 2 ....
Definition: EaCx.cpp:123
void dispatch(Args &&... args) const
Definition: EncryptedArray.h:386
void rotate1D(std::vector< U > &out, const std::vector< U > &in, long i, long offset) const
rotate an array by offset in the i'th dimension (output should not alias input)
Definition: EncryptedArray.h:1370
virtual void decrypt(const Ctxt &ctxt, const SecKey &sKey, std::vector< long > &ptxt) const override
Definition: EncryptedArray.h:530
void decrypt(const Ctxt &ctxt, const SecKey &sKey, std::vector< RX > &ptxt) const
Definition: EncryptedArray.h:585
The public key.
Definition: keys.h:47
virtual void rotate(Ctxt &ctxt, long k) const =0
Right rotation as a linear array. E.g., rotating ctxt=Enc(1 2 3 ... n) by k=1 gives Enc(n 1 2 ....
void CKKSencrypt(Ctxt &ciphertxt, const NTL::ZZX &plaintxt, double ptxtSize=1.0, double scaling=0.0) const
Definition: keys.cpp:498
virtual void restoreContextForG() const
Definition: EncryptedArray.h:264
virtual void decrypt(const Ctxt &ctxt, const SecKey &sKey, std::vector< cx_double > &ptxt) const =0
long Encrypt(Ctxt &ciphertxt, const NTL::ZZX &plaintxt, long ptxtSpace, bool highNoise) const
Definition: keys.cpp:354
std::complex< double > cx_double
Definition: EncryptedArray.h:32
Definition: apiAttributes.h:21
void incrementalZeroTest(Ctxt *res[], const EncryptedArray &ea, const Ctxt &ctxt, long n)
Definition: eqtesting.cpp:95
long getP2R() const override
Definition: EncryptedArray.h:430
Definition: EncryptedArray.h:1391
const RX & getG() const
Definition: EncryptedArray.h:391
virtual ~PlaintextArrayBase()
Definition: EncryptedArray.h:1385
void runningSums(const EncryptedArray &ea, Ctxt &ctxt)
A ctxt that encrypts is replaced by an encryption of , where .
Definition: EncryptedArray.cpp:548
void random(std::vector< double > &array, double rad=1.0) const
Definition: EncryptedArray.h:1086
void decrypt(const Ctxt &ctxt, const SecKey &sKey, std::vector< double > &ptxt) const override
Definition: EncryptedArray.h:1102
virtual void decode(PlaintextArray &array, const NTL::ZZX &ptxt) const =0
virtual void encode(zzX &ptxt, const std::vector< long > &array) const =0
PlaintextArray & operator=(const PlaintextArray &other)
Definition: EncryptedArray.h:1427
long coordinate(long i, long k) const
Definition: EncryptedArray.h:1361
void encode(UNUSED zzX &ptxt, UNUSED const PlaintextArray &array) const override
Unimplemented encode function for BGV. It will always throw helib::LogicError.
Definition: EncryptedArray.h:781
const NTL::Mat< R > & getNormalBasisMatrixInverse() const
Definition: EncryptedArray.h:400
void decrypt1Slot(NTL::ZZX &slot, const Ctxt &ctxt, const SecKey &sKey, long i) const
Definition: EncryptedArray.h:238
std::ostream & operator<<(std::ostream &s, const SKHandle &handle)
Definition: Ctxt.h:190
void decode(std::vector< double > &array, const zzX &ptxt, double scaling) const
Definition: EncryptedArray.h:1069
void applyLinPolyMany(const EncryptedArray &ea, Ctxt &ctxt, const std::vector< std::vector< NTL::ZZX >> &Cvec)
Definition: EncryptedArray.cpp:679
virtual void print(std::ostream &s) const =0
void decrypt(const Ctxt &ctxt, const SecKey &sKey, Ptxt< Scheme > &ptxt) const
Decrypt ciphertext to a plaintext relative to a specific scheme.
Definition: EncryptedArray.h:1121
static void convert(std::vector< cx_double > &out, const std::vector< double > &in)
Definition: EncryptedArray.h:695
void encodeUnitSelector(zzX &ptxt, long i) const
Definition: EncryptedArray.h:1319
void shift(Ctxt &ctxt, long k) const override
Non-cyclic right shift with zero fill E.g., shifting ctxt=Enc(1 2 3 ... n) by k=1 gives Enc(0 1 2....
Definition: EaCx.cpp:127
@ PA_cx_tag
Definition: PAlgebra.h:300
virtual void random(std::vector< NTL::ZZX > &array) const =0
void decode(std::vector< cx_double > &array, const NTL::ZZX &ptxt, double scaling) const
Definition: EncryptedArray.h:1060
void applyLinPoly1(const EncryptedArray &ea, Ctxt &ctxt, const std::vector< NTL::ZZX > &C)
Definition: EncryptedArray.cpp:655
void extractRealPart(Ptxt< Scheme > &p) const
Extract the real part of a CKKS plaintext.
Definition: EncryptedArray.h:1136
virtual const Context & getContext() const override
Definition: EncryptedArray.h:415
long decode1Slot(const NTL::ZZX &ptxt, long i) const
Definition: EncryptedArray.h:180
The secret key.
Definition: keys.h:241
long coordinate(long i, long k) const
Returns coordinate of index k along the i'th dimension.
Definition: PAlgebra.h:257
Maintaining the parameters.
Definition: Context.h:121
void decrypt(const Ctxt &ctxt, const SecKey &sKey, T &ptxt) const
Definition: EncryptedArray.h:1343
EncryptedArray(const Context &context, const NTL::ZZX &G=NTL::ZZX(1, 1))
constructor: G defaults to the monomial X, PAlgebraMod from context
Definition: EncryptedArray.h:1240
double encodei(zzX &ptxt, long precision=-1) const
Definition: EaCx.cpp:173
void encode(const EncryptedArray &ea, PlaintextArray &pa, const std::vector< long > &array)
Definition: EncryptedArray.cpp:824
EncryptedArray & operator=(const EncryptedArray &other)
Definition: EncryptedArray.h:1250
The structure of Z[X]/(Phi_m(X), p)
Definition: PAlgebra.h:799
double encode(zzX &ptxt, const std::vector< long > &array, double useThisSize, long precision=-1) const
Definition: EncryptedArray.h:926
EncryptedArrayCx(const Context &_context)
Definition: EncryptedArray.h:683
virtual EncryptedArrayBase * clone() const override
Definition: EncryptedArray.h:377
@ PA_zz_p_tag
Definition: PAlgebra.h:299
void rotate1D(Ctxt &ctxt, long i, long k, bool dc=false) const override
right-rotate k positions along the i'th dimension
Definition: EaCx.cpp:91
PlaintextArray(const PlaintextArray &other)
Definition: EncryptedArray.h:1426
virtual void decode(std::vector< NTL::ZZX > &array, const NTL::ZZX &ptxt) const override
Definition: EncryptedArray.h:508
void negate(const EncryptedArray &ea, PlaintextArray &pa)
Definition: EncryptedArray.cpp:1085
void restoreContext() const
Definition: EncryptedArray.h:1354
void mapTo01(const EncryptedArray &ea, Ctxt &ctxt)
Definition: eqtesting.cpp:35
void decode(UNUSED PlaintextArray &array, UNUSED const NTL::ZZX &ptxt) const override
Unimplemented decode function for BGV. It will always throw helib::LogicError.
Definition: EncryptedArray.h:838
virtual void decode(std::vector< NTL::ZZX > &array, const NTL::ZZX &ptxt) const =0
long numOfGens() const
The prime-power factorization of m.
Definition: PAlgebra.h:202
void frobeniusAutomorph(const EncryptedArray &ea, PlaintextArray &pa, long j)
Definition: EncryptedArray.cpp:1131
void add(const EncryptedArray &ea, PlaintextArray &pa, const PlaintextArray &other)
Definition: EncryptedArray.cpp:1005
void encrypt(Ctxt &ctxt, const PubKey &pKey, const T &ptxt) const
Definition: EncryptedArray.h:1337
long dimension() const
Definition: EncryptedArray.h:1358
void decode1Slot(NTL::ZZX &slot, const NTL::ZZX &ptxt, long i) const
Definition: EncryptedArray.h:186
static void convert(std::vector< double > &out, const std::vector< cx_double > &in)
Definition: EncryptedArray.h:702
virtual void decrypt(const Ctxt &ctxt, const SecKey &sKey, std::vector< long > &ptxt) const =0
long decrypt1Slot(const Ctxt &ctxt, const SecKey &sKey, long i) const
Definition: EncryptedArray.h:232
A Ctxt object holds a single ciphertext.
Definition: Ctxt.h:273
EncryptedArrayCx(const Context &_context, const PAlgebraModCx &_alMod)
Definition: EncryptedArray.h:688
void convert(long &x1, const NTL::GF2X &x2)
Definition: NumbTh.h:361
void decrypt(UNUSED const Ctxt &ctxt, UNUSED const SecKey &sKey, UNUSED PlaintextArray &ptxt) const override
Unimplemented decrypt function for BGV. It will always throw helib::LogicError.
Definition: EncryptedArray.h:889
Definition: PAlgebra.h:758
void print(std::ostream &s) const
Definition: EncryptedArray.h:1445
virtual const Context & getContext() const =0
virtual void restoreContextForG() const override
Definition: EncryptedArray.h:410
void dispatch(Args &&... args) const
Definition: EncryptedArray.h:1281
static void convert(std::vector< long > &out, const std::vector< cx_double > &in)
Definition: EncryptedArray.h:715
void initNormalBasisMatrix() const
Definition: EncryptedArray.cpp:482
double encode(zzX &out, const Ptxt< Scheme > &ptxt, double useThisSize, long precision=-1) const
Encode a Ptxt object into a zzX.
Definition: EncryptedArray.h:946
virtual void print(std::ostream &s) const
Definition: EncryptedArray.h:1397
const RX & getG() const
Definition: PAlgebra.h:495
void shift1D(Ctxt &ctxt, long i, long k) const override
Right shift k positions along the i'th dimension with zero fill.
Definition: EaCx.cpp:115
const PAlgebraModDerived< type > & getTab() const
Definition: EncryptedArray.h:421
A concrete instantiation of the virtual class.
Definition: PAlgebra.h:535
EncryptedArray(const Context &context, const PAlgebraMod &_alMod)
constructor: G defaults to F0, PAlgebraMod explicitly given
Definition: EncryptedArray.h:1244
virtual PA_tag getTag() const override
Definition: EncryptedArray.h:382
const PAlgebra & getPAlgebra() const
Definition: EncryptedArray.h:1303
void encrypt(Ctxt &ctxt, const PubKey &key, const PTXT &ptxt, double useThisSize, long precision=-1) const
Definition: EncryptedArray.h:994
EncryptedArrayBase * buildEncryptedArray(const Context &context, const PAlgebraMod &alMod, const NTL::ZZX &G=NTL::ZZX::zero())
A "factory" for building EncryptedArrays.
Definition: EncryptedArray.cpp:23
PlaintextArray(const EncryptedArray &ea)
Definition: EncryptedArray.h:1421
PAlgebra zMStar
The structure of Zm*.
Definition: Context.h:131
const zzX & getiEncoded() const
Definition: EaCx.cpp:179
double encodeRoundingError() const
Definition: EncryptedArray.h:1027
PA_tag getTag() const
Definition: EncryptedArray.h:1278
const NTL::Mat< R > & getNormalBasisMatrix() const
Definition: EncryptedArray.h:393
long getR() const override
The value r.
Definition: PAlgebra.h:775