EvalMap.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_EVALMAP_H
13 #define HELIB_EVALMAP_H
14 
18 #include <helib/EncryptedArray.h>
19 #include <helib/matmul.h>
20 
21 namespace helib {
22 
53 
54 class EvalMap
55 {
56 private:
57  const EncryptedArray& ea;
58  bool invert; // apply transformation in inverse order?
59  long nfactors; // how many factors of m
60  std::unique_ptr<BlockMatMul1DExec> mat1; // one block matrix
61  NTL::Vec<std::unique_ptr<MatMul1DExec>> matvec; // regular matrices
62 
63 public:
64  EvalMap(const EncryptedArray& _ea,
65  bool minimal,
66  const NTL::Vec<long>& mvec,
67  bool _invert,
68  bool build_cache,
69  bool normal_basis = true);
70 
71  // the normal_basis parameter indicates that we want the
72  // normal basis transformation when invert == true.
73  // On by default, off for testing
74 
75  void upgrade();
76  void apply(Ctxt& ctxt) const;
77 };
78 
86 
88 {
89 private:
90  const EncryptedArray& ea;
91  bool invert; // apply transformation in inverse order?
92  long nfactors; // how many factors of m
93  NTL::Vec<std::unique_ptr<MatMulExecBase>> matvec; // regular matrices
94 
95 public:
96  ThinEvalMap(const EncryptedArray& _ea,
97  bool minimal,
98  const NTL::Vec<long>& mvec,
99  bool _invert,
100  bool build_cache);
101 
102  void upgrade();
103  void apply(Ctxt& ctxt) const;
104 };
105 
106 } // namespace helib
107 
108 #endif // ifndef HELIB_EVALMAP_H
EvalMap(const EncryptedArray &_ea, bool minimal, const NTL::Vec< long > &mvec, bool _invert, bool build_cache, bool normal_basis=true)
Definition: EvalMap.cpp:42
void apply(Ctxt &ctxt) const
Definition: EvalMap.cpp:649
A simple wrapper for a smart pointer to an EncryptedArrayBase. This is the interface that higher-leve...
Definition: EncryptedArray.h:1233
ThinEvalMap(const EncryptedArray &_ea, bool minimal, const NTL::Vec< long > &mvec, bool _invert, bool build_cache)
Definition: EvalMap.cpp:509
Class that provides the functionality for the linear transforms used in "thin" boostrapping,...
Definition: EvalMap.h:88
Class that provides the functionality for the linear transforms used in boostrapping....
Definition: EvalMap.h:55
void apply(Ctxt &ctxt) const
Definition: EvalMap.cpp:171
Definition: apiAttributes.h:21
void upgrade()
Definition: EvalMap.cpp:163
A Ctxt object holds a single ciphertext.
Definition: Ctxt.h:273
void upgrade()
Definition: EvalMap.cpp:641