-
Notifications
You must be signed in to change notification settings - Fork 189
/
boolean-multi-input.cpp
181 lines (139 loc) · 6.03 KB
/
boolean-multi-input.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
//==================================================================================
// BSD 2-Clause License
//
// Copyright (c) 2014-2022, NJIT, Duality Technologies Inc. and other contributors
//
// All rights reserved.
//
// Author TPOC: contact@openfhe.org
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//==================================================================================
/*
Example for the FHEW scheme using the default bootstrapping method (GINX)
*/
#include "binfhecontext.h"
using namespace lbcrypto;
int main() {
// Sample Program: Step 1: Set CryptoContext
auto cc = BinFHEContext();
cc.GenerateBinFHEContext(STD128_4, GINX);
// Sample Program: Step 2: Key Generation
// Generate the secret key
auto sk = cc.KeyGen();
std::cout << "Generating the bootstrapping keys..." << std::endl;
// Generate the bootstrapping keys (refresh and switching keys)
cc.BTKeyGen(sk);
std::cout << "Completed the key generation." << std::endl;
// Sample Program: Step 3: Encryption
// Encrypt several ciphertexts representing Boolean True (1) or False (0).
// plaintext modulus is set higher than 4 to 2 * num_of_inputs
auto p = 6;
auto ct1_3input = cc.Encrypt(sk, 1, SMALL_DIM, p);
auto ct2_3input = cc.Encrypt(sk, 1, SMALL_DIM, p);
auto ct3_3input = cc.Encrypt(sk, 0, SMALL_DIM, p);
// 1, 1, 0
std::vector<LWECiphertext> ct123;
ct123.push_back(ct1_3input);
ct123.push_back(ct2_3input);
ct123.push_back(ct3_3input);
// 1, 1, 0
auto ctAND3 = cc.EvalBinGate(AND3, ct123);
// 1, 1, 0
auto ctOR3 = cc.EvalBinGate(OR3, ct123);
// Sample Program: Step 5: Decryption
LWEPlaintext result;
cc.Decrypt(sk, ctAND3, &result, p);
if (result != 0)
OPENFHE_THROW("Decryption failure");
std::cout << "Result of encrypted computation of AND(1, 1, 0) = " << result << std::endl;
cc.Decrypt(sk, ctOR3, &result, p);
if (result != 1)
OPENFHE_THROW("Decryption failure");
std::cout << "Result of encrypted computation of OR(1, 1, 0) = " << result << std::endl;
// majority gate and cmux for 3 input does not need higher plaintext modulus
p = 4;
auto ct1_3input_p4 = cc.Encrypt(sk, 1, SMALL_DIM, p);
auto ct2_3input_p4 = cc.Encrypt(sk, 1, SMALL_DIM, p);
auto ct3_3input_p4 = cc.Encrypt(sk, 0, SMALL_DIM, p);
auto ct4_3input_p4 = cc.Encrypt(sk, 0, SMALL_DIM, p);
// 1, 1, 0
std::vector<LWECiphertext> ct123_p4;
ct123_p4.push_back(ct1_3input_p4);
ct123_p4.push_back(ct2_3input_p4);
ct123_p4.push_back(ct3_3input_p4);
// 1, 0, 0
std::vector<LWECiphertext> ct134_p4;
ct134_p4.push_back(ct1_3input_p4);
ct134_p4.push_back(ct3_3input_p4);
ct134_p4.push_back(ct4_3input_p4);
// 1, 0, 1
std::vector<LWECiphertext> ct132_p4;
ct132_p4.push_back(ct1_3input_p4);
ct132_p4.push_back(ct3_3input_p4);
ct132_p4.push_back(ct2_3input_p4);
// 1, 1, 0
auto ctMajority = cc.EvalBinGate(MAJORITY, ct123_p4);
// 1, 0, 1
auto ctCMUX0 = cc.EvalBinGate(CMUX, ct132_p4);
// 1, 0, 0
auto ctCMUX1 = cc.EvalBinGate(CMUX, ct134_p4);
cc.Decrypt(sk, ctMajority, &result);
if (result != 1)
OPENFHE_THROW("Decryption failure");
std::cout << "Result of encrypted computation of Majority(1, 1, 0) = " << result << std::endl;
cc.Decrypt(sk, ctCMUX1, &result);
if (result != 1)
OPENFHE_THROW("Decryption failure");
std::cout << "Result of encrypted computation of CMUX(1, 0, 0) = " << result << std::endl;
cc.Decrypt(sk, ctCMUX0, &result);
if (result != 0)
OPENFHE_THROW("Decryption failure");
std::cout << "Result of encrypted computation of CMUX(1, 0, 1) = " << result << std::endl;
// for 4 input gates
p = 8;
auto ct1_4input = cc.Encrypt(sk, 1, SMALL_DIM, p);
auto ct2_4input = cc.Encrypt(sk, 0, SMALL_DIM, p);
auto ct3_4input = cc.Encrypt(sk, 0, SMALL_DIM, p);
auto ct4_4input = cc.Encrypt(sk, 0, SMALL_DIM, p);
// 1, 0, 0, 0
std::vector<LWECiphertext> ct1234;
ct1234.push_back(ct1_4input);
ct1234.push_back(ct2_4input);
ct1234.push_back(ct3_4input);
ct1234.push_back(ct4_4input);
// Sample Program: Step 4: Evaluation
// 1, 0, 0, 0
auto ctAND4 = cc.EvalBinGate(AND4, ct1234);
// 1, 0, 0, 0
auto ctOR4 = cc.EvalBinGate(OR4, ct1234);
// Sample Program: Step 5: Decryption
cc.Decrypt(sk, ctAND4, &result, p);
if (result != 0)
OPENFHE_THROW("Decryption failure");
std::cout << "Result of encrypted computation of AND(1, 0, 0, 0) = " << result << std::endl;
cc.Decrypt(sk, ctOR4, &result, p);
if (result != 1)
OPENFHE_THROW("Decryption failure");
std::cout << "Result of encrypted computation of OR(1, 0, 0, 0) = " << result << std::endl;
return 0;
}