debugging.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_DEBUGGING_H
13 #define HELIB_DEBUGGING_H
14 #include <iostream>
17 #include <string>
18 #include <NTL/ZZX.h>
19 #include <helib/NumbTh.h>
20 
21 #define FLAG_PRINT_ZZX 1
22 #define FLAG_PRINT_POLY 2
23 #define FLAG_PRINT_VEC 4 /* decode to ZZX */
24 #define FLAG_PRINT_DVEC 8 /* decode to double float */
25 #define FLAG_PRINT_XVEC 16 /* decode to complex numbers */
26 
27 namespace helib {
28 
29 // forward declarations
30 class Ctxt;
31 class SecKey;
32 class EncryptedArray;
33 class PlaintextArray;
34 class DoubleCRT;
35 
36 extern SecKey* dbgKey;
37 extern std::shared_ptr<const EncryptedArray> dbgEa;
38 extern NTL::ZZX dbg_ptxt;
39 
45 inline void setupDebugGlobals(
46  SecKey* debug_key,
47  const std::shared_ptr<const EncryptedArray>& debug_ea,
48  NTL::ZZX debug_ptxt = NTL::ZZX{})
49 {
50 #ifdef HELIB_DEBUG
51  dbgKey = debug_key;
52  dbgEa = debug_ea;
53  dbg_ptxt = debug_ptxt;
54 #else
55  (void)debug_key;
56  (void)debug_ea;
57  (void)debug_ptxt;
58 #endif
59 }
60 
64 inline void cleanupDebugGlobals()
65 {
66  dbgKey = nullptr;
67  dbgEa = nullptr;
68  dbg_ptxt = NTL::ZZX{};
69 }
70 
71 void decryptAndPrint(std::ostream& s,
72  const Ctxt& ctxt,
73  const SecKey& sk,
74  const EncryptedArray& ea,
75  long flags = 0);
76 
77 NTL::xdouble embeddingLargestCoeff(const Ctxt& ctxt, const SecKey& sk);
78 
79 double realToEstimatedNoise(const Ctxt& ctxt, const SecKey& sk);
80 
81 void checkNoise(const Ctxt& ctxt,
82  const SecKey& sk,
83  const std::string& msg,
84  double thresh = 10.0);
85 
86 bool decryptAndCompare(const Ctxt& ctxt,
87  const SecKey& sk,
88  const EncryptedArray& ea,
89  const PlaintextArray& pa);
90 
91 void rawDecrypt(NTL::ZZX& plaintxt,
92  const std::vector<NTL::ZZX>& zzParts,
93  const DoubleCRT& sKey,
94  long q = 0);
95 
96 // Debug printing routines for vectors, ZZX'es, print only a few entries
97 
98 template <typename VEC>
99 std::ostream& printVec(std::ostream& s, const VEC& v, long nCoeffs = 40)
100 {
101  long d = lsize(v);
102  if (d < nCoeffs)
103  return s << v; // just print the whole thing
104 
105  // otherwise print only 1st nCoeffs coefficients
106  s << '[';
107  for (long i = 0; i < nCoeffs - 2; i++)
108  s << v[i] << ' ';
109  s << "... " << v[d - 2] << ' ' << v[d - 1] << ']';
110  return s;
111 }
112 
113 inline std::ostream& printZZX(std::ostream& s,
114  const NTL::ZZX& poly,
115  long nCoeffs = 40)
116 {
117  return printVec(s, poly.rep, nCoeffs);
118 }
119 
120 } // namespace helib
121 
122 #endif // ifndef HELIB_DEBUGGING_H
long lsize(const std::vector< T > &v)
Size of STL vector as a long (rather than unsigned long)
Definition: NumbTh.h:702
std::shared_ptr< const EncryptedArray > dbgEa
Definition: debugging.cpp:24
SecKey * dbgKey
Definition: debugging.cpp:23
NTL::ZZX dbg_ptxt
Definition: debugging.cpp:25
bool decryptAndCompare(const Ctxt &ctxt, const SecKey &sk, const EncryptedArray &ea, const PlaintextArray &pa)
Definition: debugging.cpp:135
std::ostream & printVec(std::ostream &s, const VEC &v, long nCoeffs=40)
Definition: debugging.h:99
void checkNoise(const Ctxt &ctxt, const SecKey &sk, const std::string &msg, double thresh=10.0)
Definition: debugging.cpp:49
void cleanupDebugGlobals()
Cleanup function for clearing the global debug variables.
Definition: debugging.h:64
double realToEstimatedNoise(const Ctxt &ctxt, const SecKey &sk)
Definition: debugging.cpp:28
std::ostream & printZZX(std::ostream &s, const NTL::ZZX &poly, long nCoeffs=40)
Definition: debugging.h:113
NTL::xdouble embeddingLargestCoeff(const Ctxt &ctxt, const SecKey &sk)
Definition: debugging.cpp:61
void rawDecrypt(NTL::ZZX &plaintxt, const std::vector< NTL::ZZX > &zzParts, const DoubleCRT &sKey, long q=0)
Definition: debugging.cpp:148
Definition: apiAttributes.h:21
void setupDebugGlobals(SecKey *debug_key, const std::shared_ptr< const EncryptedArray > &debug_ea, NTL::ZZX debug_ptxt=NTL::ZZX{})
Setup function for setting up the global debug variables.
Definition: debugging.h:45
void decryptAndPrint(std::ostream &s, const Ctxt &ctxt, const SecKey &sk, const EncryptedArray &ea, long flags=0)
Definition: debugging.cpp:69
The secret key.
Definition: keys.h:241