keySwitching.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 
13 #ifndef HELIB_KEY_SWITCHING_H
14 #define HELIB_KEY_SWITCHING_H
15 
23 #include <climits>
24 #include <helib/DoubleCRT.h>
25 #include <helib/Context.h>
26 #include <helib/Ctxt.h>
27 
28 namespace helib {
29 
86 class KeySwitch
87 {
88 public:
89  SKHandle fromKey; // A handle for the key s'
90  long toKeyID; // Index of the key s that we are switching into
91  long ptxtSpace; // either p or p^r
92 
93  std::vector<DoubleCRT> b; // The top row, consisting of the bi's
94  NTL::ZZ prgSeed; // a seed to generate the random ai's in the bottom row
95  NTL::xdouble noiseBound; // high probability bound on noise magnitude
96  // in each column
97 
98  explicit KeySwitch(long sPow = 0,
99  long xPow = 0,
100  long fromID = 0,
101  long toID = 0,
102  long p = 0);
103  explicit KeySwitch(const SKHandle& _fromKey,
104  long fromID = 0,
105  long toID = 0,
106  long p = 0);
107 
108  bool operator==(const KeySwitch& other) const;
109  bool operator!=(const KeySwitch& other) const;
110 
111  unsigned long NumCols() const;
112 
114  static const KeySwitch& dummy();
115  bool isDummy() const;
116 
118  void verify(SecKey& sk);
119 
121  void readMatrix(std::istream& str, const Context& context);
122 
124  void read(std::istream& str, const Context& context);
125  void write(std::ostream& str) const;
126 };
127 std::ostream& operator<<(std::ostream& str, const KeySwitch& matrix);
128 // We DO NOT have std::istream& operator>>(std::istream& str, KeySwitch&
129 // matrix); instead must use the readMatrix method above, where you can specify
130 // context
131 
134 
137 #define HELIB_KEYSWITCH_THRESH (50)
138 
142 #define HELIB_KEYSWITCH_MIN_THRESH (8)
143 
146 long KSGiantStepSize(long D);
147 
150 void addAllMatrices(SecKey& sKey, long keyID = 0);
151 
154 void addFewMatrices(SecKey& sKey, long keyID = 0);
155 
159 void addSome1DMatrices(SecKey& sKey,
160  long bound = HELIB_KEYSWITCH_THRESH,
161  long keyID = 0);
162 
166 void add1DMatrices(SecKey& sKey, long keyID = 0);
167 
168 void addBSGS1DMatrices(SecKey& sKey, long keyID = 0);
169 
171 void addSomeFrbMatrices(SecKey& sKey,
172  long bound = HELIB_KEYSWITCH_THRESH,
173  long keyID = 0);
174 
175 void addFrbMatrices(SecKey& sKey, long keyID = 0);
176 
177 void addBSGSFrbMatrices(SecKey& sKey, long keyID = 0);
178 
180 void addMinimal1DMatrices(SecKey& sKey, long keyID = 0);
181 void addMinimalFrbMatrices(SecKey& sKey, long keyID = 0);
182 
184 class PermNetwork;
185 void addMatrices4Network(SecKey& sKey, const PermNetwork& net, long keyID = 0);
186 
188 void addTheseMatrices(SecKey& sKey,
189  const std::set<long>& automVals,
190  long keyID = 0);
191 
192 } // namespace helib
193 
194 #endif // HELIB_KEY_SWITCHING_H
void read(std::istream &str, const Context &context)
Raw IO.
Definition: keySwitching.cpp:235
NTL::ZZ prgSeed
Definition: keySwitching.h:94
bool operator==(const KeySwitch &other) const
Definition: keySwitching.cpp:44
void addTheseMatrices(SecKey &sKey, const std::set< long > &automVals, long keyID=0)
Generate specific key-switching matrices, described by the given set.
Definition: keySwitching.cpp:643
long ptxtSpace
Definition: keySwitching.h:91
std::vector< DoubleCRT > b
Definition: keySwitching.h:93
void addFewMatrices(SecKey &sKey, long keyID=0)
Generate matrices so every s(X^e) can be reLinearized in at most two steps.
Key-switching matrices.
Definition: keySwitching.h:87
SKHandle fromKey
Definition: keySwitching.h:89
A handle, describing the secret-key element that "matches" a part, of the form s^r(X^t).
Definition: Ctxt.h:78
unsigned long NumCols() const
Definition: keySwitching.cpp:72
long KSGiantStepSize(long D)
Function that returns number of baby steps. Used to keep this and matmul routines "in sync".
Definition: keySwitching.cpp:252
void addAllMatrices(SecKey &sKey, long keyID=0)
Maximalistic approach: generate matrices s(X^e)->s(X) for all e in Zm*.
Definition: keySwitching.cpp:262
void add1DMatrices(SecKey &sKey, long keyID=0)
Generate all matrices s(X^{g^i})->s(X) for generators g of Zm* /(p) and i<ord(g). If g has different ...
Definition: keySwitching.cpp:543
void addFrbMatrices(SecKey &sKey, long keyID=0)
Definition: keySwitching.cpp:565
bool operator!=(const KeySwitch &other) const
Definition: keySwitching.cpp:67
KeySwitch(const SKHandle &_fromKey, long fromID=0, long toID=0, long p=0)
long toKeyID
Definition: keySwitching.h:90
bool isDummy() const
Definition: keySwitching.cpp:74
Definition: apiAttributes.h:21
void addMinimal1DMatrices(SecKey &sKey, long keyID=0)
These routines just add a single matrix (or two, for bad dimensions)
Definition: keySwitching.cpp:603
void addBSGS1DMatrices(SecKey &sKey, long keyID=0)
Definition: keySwitching.cpp:548
void addMinimalFrbMatrices(SecKey &sKey, long keyID=0)
Definition: keySwitching.cpp:615
std::ostream & operator<<(std::ostream &s, const SKHandle &handle)
Definition: Ctxt.h:190
void addMatrices4Network(SecKey &sKey, const PermNetwork &net, long keyID=0)
Definition: keySwitching.cpp:622
A full permutation network.
Definition: permutations.h:559
NTL::xdouble noiseBound
Definition: keySwitching.h:95
void verify(SecKey &sk)
A debugging method.
Definition: keySwitching.cpp:76
void addSomeFrbMatrices(SecKey &sKey, long bound=HELIB_KEYSWITCH_THRESH, long keyID=0)
Generate all/some Frobenius matrices of the form s(X^{p^i})->s(X)
Definition: keySwitching.cpp:554
The secret key.
Definition: keys.h:241
Maintaining the parameters.
Definition: Context.h:121
void write(std::ostream &str) const
Definition: keySwitching.cpp:210
void addSome1DMatrices(SecKey &sKey, long bound=HELIB_KEYSWITCH_THRESH, long keyID=0)
Generate some matrices of the form s(X^{g^i})->s(X), but not all. For a generator g whose order is la...
Definition: keySwitching.cpp:528
void readMatrix(std::istream &str, const Context &context)
Read a key-switching matrix from input.
Definition: keySwitching.cpp:193
KeySwitch(long sPow=0, long xPow=0, long fromID=0, long toID=0, long p=0)
Definition: keySwitching.cpp:33
static const KeySwitch & dummy()
returns a dummy static matrix with toKeyId == -1
Definition: keySwitching.cpp:175
void addBSGSFrbMatrices(SecKey &sKey, long keyID=0)
Definition: keySwitching.cpp:570