polyEval.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_POLYEVAL_H
13 #define HELIB_POLYEVAL_H
14 
19 #include <helib/Context.h>
20 #include <helib/Ctxt.h>
21 
22 namespace helib {
23 
30 void polyEval(Ctxt& ret, NTL::ZZX poly, const Ctxt& x, long k = 0);
31 // Note: poly is passed by value, so caller keeps the original
32 
37 void polyEval(Ctxt& ret, const NTL::Vec<Ctxt>& poly, const Ctxt& x);
38 
39 // A useful helper class
40 
42 // This implementation assumes that the size (# of powers) is determined
43 // at initialization time, it is not hard to grow the std::vector as needed,
44 // but not clear if there is any application that needs it.
46 {
47 private:
48  std::vector<Ctxt> v; // A std::vector storing the powers themselves
49 
50 public:
51  DynamicCtxtPowers(const Ctxt& c, long nPowers)
52  {
53  // Sanity-check
54  assertFalse<InvalidArgument>(c.isEmpty(), "Ciphertext cannot be empty");
55  assertTrue<InvalidArgument>(nPowers > 0, "Must have positive nPowers");
56 
57  Ctxt tmp(c.getPubKey(), c.getPtxtSpace());
58  v.resize(nPowers, tmp); // Initializes nPowers empty ciphertexts
59  v[0] = c; // store X itself in v[0]
60  }
61 
63  Ctxt& getPower(long e); // must use e >= 1, else throws an exception
64 
66  Ctxt& at(long i) { return getPower(i + 1); }
67  Ctxt& operator[](long i) { return getPower(i + 1); }
68 
69  const std::vector<Ctxt>& getVector() const { return v; }
70  long size() const { return v.size(); }
71  bool isPowerComputed(long i)
72  {
73  return (i > 0 && i <= (long)v.size() && !v[i - 1].isEmpty());
74  }
75 };
76 
77 } // namespace helib
78 
79 #endif // ifndef HELIB_POLYEVAL_H
DynamicCtxtPowers(const Ctxt &c, long nPowers)
Definition: polyEval.h:51
Store powers of X, compute them dynamically as needed.
Definition: polyEval.h:46
const PubKey & getPubKey() const
Definition: Ctxt.h:820
long getPtxtSpace() const
Definition: Ctxt.h:822
Definition: apiAttributes.h:21
Ctxt & at(long i)
dp.at(i) and dp[i] both return the i+1st power
Definition: polyEval.h:66
void polyEval(Ctxt &ret, NTL::ZZX poly, const Ctxt &x, long k=0)
Evaluate a cleartext polynomial on an encrypted input.
Definition: polyEval.cpp:129
bool isEmpty() const
Is this an empty ciphertext without any parts.
Definition: Ctxt.h:798
A Ctxt object holds a single ciphertext.
Definition: Ctxt.h:273
bool isPowerComputed(long i)
Definition: polyEval.h:71
long size() const
Definition: polyEval.h:70
Ctxt & operator[](long i)
Definition: polyEval.h:67
const std::vector< Ctxt > & getVector() const
Definition: polyEval.h:69
Ctxt & getPower(long e)
Returns the e'th power, computing it as needed.
Definition: polyEval.cpp:18