CtPtrs.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_CTPTRS_H
13 #define HELIB_CTPTRS_H
14 
18 #include <initializer_list>
19 #include <helib/Ctxt.h>
20 #include <helib/PtrVector.h>
21 #include <helib/PtrMatrix.h>
22 
23 namespace helib {
24 
26 // CtPtrs_VecCt(NTL::Vec<Ctxt>)
28 // CtPtrs_vectorCt(std::vector<Ctxt>)
30 // CtPtrs_VecPt(NTL::Vec<Ctxt*>)
32 // CtPtrs_vectorPt(std::vector<Ctxt*>)
34 
35 // A slice of CtPtrs
37 
43 
44 // Use packed bootstrapping, so we can bootstrap all in just a few calls
45 void packedRecrypt(const CtPtrs& cPtrs,
46  const std::vector<zzX>& unpackConsts,
47  const EncryptedArray& ea);
48 
49 // recrypt all ctxt below level 'belowLvl'
50 void packedRecrypt(const CtPtrs& array, // vector of Ctxts
51  const std::vector<zzX>& unpackConsts,
52  const EncryptedArray& ea,
53  long belowLvl);
54 
55 void packedRecrypt(const CtPtrMat& m, // matrix of Ctxts
56  const std::vector<zzX>& unpackConsts,
57  const EncryptedArray& ea,
58  long belowLvl = LONG_MAX);
59 
60 // Find the lowest level among many ciphertexts
61 // FIXME: using bitCapacity isn't really the right thing.
62 // this could break some code
63 inline long findMinBitCapacity(const CtPtrs& v)
64 {
65  long lvl = LONG_MAX;
66  for (long i = 0; i < v.size(); i++)
67  if (v.isSet(i) && !v[i]->isEmpty())
68  lvl = std::min(lvl, v[i]->bitCapacity());
69  return lvl;
70 }
71 
72 inline long findMinBitCapacity(const CtPtrMat& m)
73 {
74  long lvl = LONG_MAX;
75  for (long i = 0; i < m.size(); i++)
76  lvl = std::min(lvl, findMinBitCapacity(m[i]));
77  return lvl;
78 }
79 
80 inline long findMinBitCapacity(std::initializer_list<const CtPtrs*> list)
81 {
82  long lvl = LONG_MAX;
83  for (auto elem : list)
84  lvl = std::min(lvl, findMinBitCapacity(*elem));
85  return lvl;
86 }
87 
88 void innerProduct(Ctxt& result, const CtPtrs& v1, const CtPtrs& v2);
89 inline Ctxt innerProduct(const CtPtrs& v1, const CtPtrs& v2)
90 {
91  Ctxt ret(ZeroCtxtLike, *v1[0]);
92  innerProduct(ret, v1, v2);
93  return ret;
94 }
95 
96 } // namespace helib
97 
98 #endif // ifndef HELIB_CTPTRS_H
PtrMatrix_Vec< Ctxt > CtPtrMat_VecCt
Definition: CtPtrs.h:39
An implementation of PtrMatrix using vector< vector<T> >
Definition: PtrMatrix.h:167
PtrMatrix_vector< Ctxt > CtPtrMat_vectorCt
Definition: CtPtrs.h:40
An abstract class for an array of PtrVectors.
Definition: PtrMatrix.h:27
PtrMatrix_ptVec< Ctxt > CtPtrMat_ptVecCt
Definition: CtPtrs.h:41
PtrMatrix< Ctxt > CtPtrMat
Definition: CtPtrs.h:38
PtrMatrix_ptvector< Ctxt > CtPtrMat_ptvectorCt
Definition: CtPtrs.h:42
An implementation of PtrMatrix using Vec< Vec<T>* >
Definition: PtrMatrix.h:141
A simple wrapper for a smart pointer to an EncryptedArrayBase. This is the interface that higher-leve...
Definition: EncryptedArray.h:1233
PtrVector_vectorT< Ctxt > CtPtrs_vectorCt
Definition: CtPtrs.h:29
An implementation of PtrMatrix using Vec< Vec<T> >
Definition: PtrMatrix.h:97
An implementation of PtrVector using Vec<T>
Definition: PtrVector.h:208
PtrVector_slice< Ctxt > CtPtrs_slice
Definition: CtPtrs.h:36
PtrVector_VecPt< Ctxt > CtPtrs_VecPt
Definition: CtPtrs.h:31
An implementation of PtrVector using vector<T*>
Definition: PtrVector.h:192
virtual long size() const =0
virtual long size() const =0
PtrVector_vectorPt< Ctxt > CtPtrs_vectorPt
Definition: CtPtrs.h:33
Abstract class for an array of objects.
Definition: PtrVector.h:32
void innerProduct(Ctxt &result, const CtPtrs &v1, const CtPtrs &v2)
Definition: Ctxt.cpp:2318
An implementation of PtrMatrix using vector< vector<T>* >
Definition: PtrMatrix.h:210
Definition: apiAttributes.h:21
bool isSet(long i) const
Definition: PtrVector.h:44
An implementation of PtrVector as a slice of another PtrVector.
Definition: PtrVector.h:277
An implementation of PtrVector using vector<T>
Definition: PtrVector.h:245
An implementation of PtrVector using Vec<T*>
Definition: PtrVector.h:176
PtrVector< Ctxt > CtPtrs
Definition: CtPtrs.h:25
A Ctxt object holds a single ciphertext.
Definition: Ctxt.h:273
void packedRecrypt(const CtPtrs &a, const CtPtrs &b, std::vector< zzX > *unpackSlotEncoding)
Function for packed recryption to recrypt multiple numbers.
Definition: binaryArith.cpp:461
PtrVector_VecT< Ctxt > CtPtrs_VecCt
Definition: CtPtrs.h:27
long findMinBitCapacity(const CtPtrs &v)
Definition: CtPtrs.h:63