binaryArith.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_BINARYARITH_H
13 #define HELIB_BINARYARITH_H
14 
18 #include <helib/EncryptedArray.h>
19 #include <helib/CtPtrs.h> // defines CtPtrs, CtPtrMat
20 
21 namespace helib {
22 
30 std::vector<long> longToBitVector(long num, long bitSize);
31 
43 void binaryCond(CtPtrs& output,
44  const Ctxt& cond,
45  const CtPtrs& trueValue,
46  const CtPtrs& falseValue);
47 
54 void binaryMask(CtPtrs& binaryNums, const Ctxt& mask);
55 
64 void concatBinaryNums(CtPtrs& output, const CtPtrs& a, const CtPtrs& b);
65 
77 void splitBinaryNums(CtPtrs& leftSplit,
78  CtPtrs& rightSplit,
79  const CtPtrs& input);
80 
91 void leftBitwiseShift(CtPtrs& output, const CtPtrs& input, const long shamt);
92 
103 void bitwiseRotate(CtPtrs& output, const CtPtrs& input, long rotamt);
104 
112 void bitwiseXOR(CtPtrs& output, const CtPtrs& lhs, const CtPtrs& rhs);
113 
121 void bitwiseOr(CtPtrs& output, const CtPtrs& lhs, const CtPtrs& rhs);
122 
130 void bitwiseAnd(CtPtrs& output, const CtPtrs& lhs, const CtPtrs& rhs);
131 
140 void bitwiseAnd(CtPtrs& output,
141  const CtPtrs& input,
142  const std::vector<long> mask);
143 
150 void bitwiseNot(CtPtrs& output, const CtPtrs& input);
151 
163 void addTwoNumbers(CtPtrs& sum,
164  const CtPtrs& lhs,
165  const CtPtrs& rhs,
166  long sizeLimit = 0,
167  std::vector<zzX>* unpackSlotEncoding = nullptr);
168 
176 void negateBinary(CtPtrs& negation, const CtPtrs& input);
177 
187 void subtractBinary(CtPtrs& difference,
188  const CtPtrs& lhs,
189  const CtPtrs& rhs,
190  std::vector<zzX>* unpackSlotEncoding = nullptr);
205 long fifteenOrLess4Four(const CtPtrs& out,
206  const CtPtrs& in,
207  long sizeLimit = 4);
208 
220 void addManyNumbers(CtPtrs& sum,
221  CtPtrMat& numbers,
222  long sizeLimit = 0,
223  std::vector<zzX>* unpackSlotEncoding = nullptr);
224 
238 void multTwoNumbers(CtPtrs& product,
239  const CtPtrs& lhs,
240  const CtPtrs& rhs,
241  bool rhsTwosComplement = false,
242  long sizeLimit = 0,
243  std::vector<zzX>* unpackSlotEncoding = nullptr);
244 
264 void decryptBinaryNums(std::vector<long>& pNums,
265  const CtPtrs& eNums,
266  const SecKey& sKey,
267  const EncryptedArray& ea,
268  bool twosComplement = false,
269  bool allSlots = true);
270 
278 void packedRecrypt(const CtPtrs& a,
279  const CtPtrs& b,
280  std::vector<zzX>* unpackSlotEncoding);
281 
282 } // namespace helib
283 #endif // ifndef HELIB_BINARYARITH_H
void addTwoNumbers(CtPtrs &sum, const CtPtrs &lhs, const CtPtrs &rhs, long sizeLimit=0, std::vector< zzX > *unpackSlotEncoding=nullptr)
Adds two numbers in binary representation where each ciphertext of the input vector contains a bit.
Definition: binaryArith.cpp:644
void multTwoNumbers(CtPtrs &product, const CtPtrs &lhs, const CtPtrs &rhs, bool rhsTwosComplement=false, long sizeLimit=0, std::vector< zzX > *unpackSlotEncoding=nullptr)
Multiply two numbers in binary representation where each ciphertext of the input vector contains a bi...
Definition: binaryArith.cpp:1027
void bitwiseOr(CtPtrs &output, const CtPtrs &lhs, const CtPtrs &rhs)
Compute a bitwise OR between lhs and rhs.
Definition: binaryArith.cpp:594
PtrMatrix< Ctxt > CtPtrMat
Definition: CtPtrs.h:38
void binaryCond(CtPtrs &output, const Ctxt &cond, const CtPtrs &trueValue, const CtPtrs &falseValue)
Implementation of output = cond * trueValue + (1 - cond) * falseValue.
Definition: binaryArith.cpp:510
void subtractBinary(CtPtrs &difference, const CtPtrs &lhs, const CtPtrs &rhs, std::vector< zzX > *unpackSlotEncoding=nullptr)
Subtracts rhs from lhs where lhs, rhs are in 2's complement.
Definition: binaryArith.cpp:700
void bitwiseRotate(CtPtrs &output, const CtPtrs &input, long rotamt)
Rotate input by rotamt.
Definition: binaryArith.cpp:572
void negateBinary(CtPtrs &negation, const CtPtrs &input)
Negates a number in binary 2's complement representation.
Definition: binaryArith.cpp:680
void splitBinaryNums(CtPtrs &leftSplit, CtPtrs &rightSplit, const CtPtrs &input)
Splits a single binary number into two binary numbers leftSplit and rightSplit.
Definition: binaryArith.cpp:547
void decryptBinaryNums(std::vector< long > &pNums, const CtPtrs &eNums, const SecKey &sKey, const EncryptedArray &ea, bool twosComplement=false, bool allSlots=true)
Decrypt the binary numbers that are encrypted in eNums.
Definition: binaryArith.cpp:1353
void addManyNumbers(CtPtrs &sum, CtPtrMat &numbers, long sizeLimit=0, std::vector< zzX > *unpackSlotEncoding=nullptr)
Sum an arbitrary amount of numbers in binary representation.
Definition: binaryArith.cpp:895
Definition: apiAttributes.h:21
void bitwiseXOR(CtPtrs &output, const CtPtrs &lhs, const CtPtrs &rhs)
Compute a bitwise XOR between lhs and rhs.
Definition: binaryArith.cpp:584
void bitwiseAnd(CtPtrs &output, const CtPtrs &lhs, const CtPtrs &rhs)
Compute a bitwise AND between lhs and rhs.
Definition: binaryArith.cpp:609
long fifteenOrLess4Four(const CtPtrs &out, const CtPtrs &in, long sizeLimit=4)
Add together up to fifteen {0,1} integers, producing a 4-bit counter.
Definition: binaryArith.cpp:1317
std::vector< long > longToBitVector(long num, long bitSize)
Returns a number as a vector of bits with LSB on the left.
Definition: binaryArith.cpp:493
void binaryMask(CtPtrs &binaryNums, const Ctxt &mask)
Zeroes the slots of binaryNums where the corresponding slot of mask is 0.
Definition: binaryArith.cpp:503
PtrVector< Ctxt > CtPtrs
Definition: CtPtrs.h:25
void leftBitwiseShift(CtPtrs &output, const CtPtrs &input, const long shamt)
Left shift input by shamt.
Definition: binaryArith.cpp:559
void concatBinaryNums(CtPtrs &output, const CtPtrs &a, const CtPtrs &b)
Concatenates two binary numbers into a single CtPtrs object. E.g. If a=10111, b=00101 then output = 1...
Definition: binaryArith.cpp:535
void bitwiseNot(CtPtrs &output, const CtPtrs &input)
Compute a bitwise NOT of input.
Definition: binaryArith.cpp:633
void packedRecrypt(const CtPtrs &a, const CtPtrs &b, std::vector< zzX > *unpackSlotEncoding)
Function for packed recryption to recrypt multiple numbers.
Definition: binaryArith.cpp:461