recryption.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_RECRYPTION_H
13 #define HELIB_RECRYPTION_H
14 
18 #include <helib/NumbTh.h>
19 
20 namespace helib {
21 
22 extern long thinRecrypt_initial_level;
23 extern long fhe_force_chen_han;
24 extern long printFlag;
25 
26 class PAlgebraMod;
27 class EncryptedArray;
28 class EvalMap;
29 class ThinEvalMap;
30 class PowerfulDCRT;
31 class Context;
32 class PubKey;
33 
37 {
38 public:
40  static constexpr long defSkHwt = 100;
41 
43  NTL::Vec<long> mvec;
44 
46  long e, ePrime;
47 
49  long skHwt;
50 
52  std::shared_ptr<const PAlgebraMod> alMod;
53 
55  std::shared_ptr<const EncryptedArray> ea;
56 
58 
60  std::shared_ptr<const EvalMap> firstMap, secondMap;
61 
63  std::shared_ptr<const PowerfulDCRT> p2dConv;
64 
66  std::vector<NTL::ZZX> unpackSlotEncoding;
67 
69  {
70  skHwt = 0;
71  e = ePrime = 0;
72  build_cache = false;
73  }
74 
76  void init(const Context& context,
77  const NTL::Vec<long>& mvec_,
78  bool enableThick, /*init linear transforms for non-thin*/
79  long t = 0 /*min Hwt for sk*/,
80  bool build_cache = false,
81  bool minimal = false);
82 
83  bool operator==(const RecryptData& other) const;
84  bool operator!=(const RecryptData& other) const
85  {
86  return !(operator==(other));
87  }
88 
90  static long setAE(long& e, long& ePrime, const Context& context, long t = 0);
117 };
118 
123 {
124 public:
126  std::shared_ptr<const ThinEvalMap> coeffToSlot, slotToCoeff;
127 
129  void init(const Context& context,
130  const NTL::Vec<long>& mvec_,
131  bool alsoThick, /*init linear transforms also for non-thin*/
132  long t = 0 /*min Hwt for sk*/,
133  bool build_cache = false,
134  bool minimal = false);
135 };
136 
137 #define HELIB_MIN_CAP_FRAC (2.0 / 3.0)
138 // Used in calculation of "min capacity".
139 // This could be set to 1.0, but just to be on the safe side,
140 // it is set to 2/3. If we did set it to 1, the min capacity
141 // would increase by less than 6/10 of a bit.
142 
143 } // namespace helib
144 
145 #endif // HELIB_RECRYPTION_H
Same as above, but for "thin" bootstrapping, where the slots are assumed to contain constants.
Definition: recryption.h:123
bool operator==(const RecryptData &other) const
Definition: recryption.cpp:266
void init(const Context &context, const NTL::Vec< long > &mvec_, bool enableThick, long t=0, bool build_cache=false, bool minimal=false)
Initialize the recryption data in the context.
Definition: recryption.cpp:277
void init(const Context &context, const NTL::Vec< long > &mvec_, bool alsoThick, long t=0, bool build_cache=false, bool minimal=false)
Initialize the recryption data in the context.
Definition: recryption.cpp:772
static constexpr long defSkHwt
default Hamming weight of recryption key
Definition: recryption.h:40
long skHwt
Hamming weight of recryption secret key.
Definition: recryption.h:49
std::vector< NTL::ZZX > unpackSlotEncoding
linPolys for unpacking the slots
Definition: recryption.h:66
std::shared_ptr< const EvalMap > firstMap
linear maps
Definition: recryption.h:60
bool build_cache
Definition: recryption.h:57
std::shared_ptr< const PAlgebraMod > alMod
for plaintext space p^{e-e'+r}
Definition: recryption.h:52
RecryptData()
Definition: recryption.h:68
std::shared_ptr< const EncryptedArray > ea
for plaintext space p^{e-e'+r}
Definition: recryption.h:55
long thinRecrypt_initial_level
Definition: apiAttributes.h:21
static long setAE(long &e, long &ePrime, const Context &context, long t=0)
Helper function for computing the recryption parameters.
Definition: recryption.cpp:200
long fhe_force_chen_han
Definition: recryption.cpp:791
std::shared_ptr< const ThinEvalMap > slotToCoeff
Definition: recryption.h:126
std::shared_ptr< const EvalMap > secondMap
Definition: recryption.h:60
Maintaining the parameters.
Definition: Context.h:121
std::shared_ptr< const PowerfulDCRT > p2dConv
conversion between ZZX and Powerful
Definition: recryption.h:63
long ePrime
Definition: recryption.h:46
NTL::Vec< long > mvec
Some data members that are only used for I/O.
Definition: recryption.h:43
A structure to hold recryption-related data inside the Context.
Definition: recryption.h:37
std::shared_ptr< const ThinEvalMap > coeffToSlot
linear maps
Definition: recryption.h:126
long e
partition of m into co-prime factors
Definition: recryption.h:46
bool operator!=(const RecryptData &other) const
Definition: recryption.h:84
long printFlag