intraSlot.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_INTRASLOT_H
13 #define HELIB_INTRASLOT_H
14 
17 #include <NTL/BasicThreadPool.h>
18 
19 #include <helib/Context.h>
20 #include <helib/EncryptedArray.h>
21 #include <helib/Ctxt.h>
22 #include <helib/CtPtrs.h>
23 
24 namespace helib {
25 
26 // Prepare the constants for unpacking
27 void buildUnpackSlotEncoding(std::vector<zzX>& unpackSlotEncoding,
28  const EncryptedArray& ea);
29 
30 // Low-level unpack of one ciphertext using pre-computed constants
31 void unpack(const CtPtrs& unpacked,
32  const Ctxt& packed,
33  const EncryptedArray& ea,
34  const std::vector<zzX>& unpackSlotEncoding);
35 
36 // unpack many ciphertexts, returns the number of unpacked ciphertexts
37 long unpack(const CtPtrs& unpacked,
38  const CtPtrs& packed,
39  const EncryptedArray& ea,
40  const std::vector<zzX>& unpackSlotEncoding);
41 
42 // Low-level (re)pack in slots of one ciphertext
43 void repack(Ctxt& packed, const CtPtrs& unpacked, const EncryptedArray& ea);
44 
45 // pack many ciphertexts, returns the number of packed ciphertexts
46 long repack(const CtPtrs& packed,
47  const CtPtrs& unpacked,
48  const EncryptedArray& ea);
49 
50 // Returns in 'value' a vector of slot values. The bits of value[i] are
51 // the content of the i'th slot pa[i], as represented on the normal basis
52 void unpackSlots(std::vector<std::size_t>& value,
53  PlaintextArray& pa,
54  const EncryptedArray& ea);
55 inline void unpackSlots(std::vector<std::size_t>& value,
56  NTL::ZZX& pa,
57  const EncryptedArray& ea)
58 {
59  PlaintextArray ar(ea);
60  ea.decode(ar, pa); // convert ZZX to PtxtArray
61  unpackSlots(value, ar, ea);
62 }
63 
64 // Packs the low-order nbits of the integer 'data' into each slot,
65 // where the bits get mapped to coefficients on the normal basis
66 void packConstant(zzX& result,
67  unsigned long data,
68  long nbits,
69  const EncryptedArray& ea);
70 
71 // Packs the low-order nbits of the entries of 'data' into each slot,
72 // where the bits get mapped to coefficients on the normal basis
73 void packConstants(zzX& result,
74  const std::vector<std::size_t>& data,
75  long nbits,
76  const EncryptedArray& ea);
77 
78 } // namespace helib
79 
80 #endif // ifndef HELIB_INTRASLOT_H
void packConstant(zzX &result, unsigned long data, long nbits, const EncryptedArray &ea)
Definition: intraSlot.cpp:304
NTL::Vec< long > zzX
Definition: zzX.h:24
void buildUnpackSlotEncoding(std::vector< zzX > &unpackSlotEncoding, const EncryptedArray &ea)
void unpackSlots(std::vector< std::size_t > &value, PlaintextArray &pa, const EncryptedArray &ea)
Definition: intraSlot.cpp:355
void unpack(const CtPtrs &unpacked, const Ctxt &packed, const EncryptedArray &ea, const std::vector< zzX > &unpackSlotEncoding)
Definition: intraSlot.cpp:119
void decode(ARRAY &array, const PTXT &ptxt) const
Definition: EncryptedArray.h:1325
A simple wrapper for a smart pointer to an EncryptedArrayBase. This is the interface that higher-leve...
Definition: EncryptedArray.h:1233
void repack(Ctxt &packed, const CtPtrs &unpacked, const EncryptedArray &ea)
Definition: intraSlot.cpp:196
void packConstants(zzX &result, const std::vector< std::size_t > &data, long nbits, const EncryptedArray &ea)
Definition: intraSlot.cpp:314
Definition: EncryptedArray.h:1401
Abstract class for an array of objects.
Definition: PtrVector.h:32
Definition: apiAttributes.h:21
A Ctxt object holds a single ciphertext.
Definition: Ctxt.h:273