-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathrepo-inventory.txt
251 lines (251 loc) · 9.24 KB
/
repo-inventory.txt
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
.bandit
.clang-format
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/feature_request.md
.github/PULL_REQUEST_TEMPLATE.md
.github/hekit-recipes/helib.toml
.github/hekit-recipes/palisade.toml
.github/hekit-recipes/seal.toml
.github/scripts/check-repo-contents-file.sh
.github/scripts/run-bandit.sh
.github/scripts/run-mypy.sh
.github/scripts/run-pylint.sh
.github/workflows/README.md
.github/workflows/github-ci.yml
.gitignore
.pre-commit-config.yaml
.pylintrc
.shellcheckrc
.typos.toml
CODEOWNERS
CODE_OF_CONDUCT.md
CPPLINT.cfg
LICENSE
QUICK_START.md
README.md
default.config
deployments/README.md
deployments/config_psi/README.md
deployments/config_psi/psi/CMakeLists.txt
deployments/config_psi/psi/src/configurable_psi.cpp
deployments/config_psi/psi/tests/CMakeLists.txt
deployments/config_psi/psi/tests/TestLookup.cpp
deployments/config_psi/psi/tests/main.cpp
deployments/config_psi/scripts/README.md
deployments/config_psi/scripts/columns.toml
deployments/config_psi/scripts/config.py
deployments/config_psi/scripts/config.toml
deployments/config_psi/scripts/datagen.py
deployments/config_psi/scripts/decode.py
deployments/config_psi/scripts/encode.py
deployments/config_psi/scripts/example_result.ptxt
deployments/config_psi/scripts/natural.py
deployments/config_psi/scripts/ptxt.py
deployments/config_psi/scripts/tests/test_datagen.py
deployments/config_psi/scripts/tests/test_decode.py
deployments/config_psi/scripts/tests/test_encode.py
deployments/config_psi/setenv.sh
deployments/config_psi/tests/test_config_psi.py
dev_reqs.txt
docker/Dockerfile.base
docker/Dockerfile.samples
docker/Dockerfile.toolkit
docker/Dockerfile.vscode
docker/README.md
docker/basic-docker-test.sh
docker/dockerfiles.toml
docker/ide-config/settings.json
docker/repo-inventory.txt
docker/runners.sh
he-samples/cmake/gbenchmark.cmake
he-samples/cmake/gflags.cmake
he-samples/cmake/gtest.cmake
he-samples/cmake/palisade.cmake
he-samples/examples/logistic-regression/CMakeLists.txt
he-samples/examples/logistic-regression/README.md
he-samples/examples/logistic-regression/datasets/.gitignore
he-samples/examples/logistic-regression/datasets/CMakeLists.txt
he-samples/examples/logistic-regression/datasets/example_kaggle_homecreditdefaultrisk.ipynb
he-samples/examples/logistic-regression/datasets/example_synthetic_data.ipynb
he-samples/examples/logistic-regression/datasets/generate_data.py
he-samples/examples/logistic-regression/datasets/lr_base.py
he-samples/examples/logistic-regression/datasets/requirements.txt
he-samples/examples/logistic-regression/include/data_loader.hpp
he-samples/examples/logistic-regression/include/logger.hpp
he-samples/examples/logistic-regression/include/lr_helper.hpp
he-samples/examples/logistic-regression/include/lrhe.hpp
he-samples/examples/logistic-regression/include/lrhe_kernel.hpp
he-samples/examples/logistic-regression/include/omp_utils.h
he-samples/examples/logistic-regression/include/timer.hpp
he-samples/examples/logistic-regression/src/data_loader.cpp
he-samples/examples/logistic-regression/src/lr_helper.cpp
he-samples/examples/logistic-regression/src/lr_test.cpp
he-samples/examples/logistic-regression/src/lrhe.cpp
he-samples/examples/logistic-regression/src/lrhe_kernel.cpp
he-samples/examples/logistic-regression/src/omp_utils.cpp
he-samples/examples/logistic-regression/src/timer.cpp
he-samples/examples/psi/CMakeLists.txt
he-samples/examples/psi/README.md
he-samples/examples/psi/datasets/ancient_egyptian_gods.set
he-samples/examples/psi/datasets/fruits.set
he-samples/examples/psi/datasets/us_states.set
he-samples/examples/psi/src/psi.cpp
he-samples/examples/secure-query/CMakeLists.txt
he-samples/examples/secure-query/README.md
he-samples/examples/secure-query/datasets/us_state_capitals.csv
he-samples/examples/secure-query/images/encoding_diagram.png
he-samples/examples/secure-query/images/mask_comparison.png
he-samples/examples/secure-query/images/query_key_comparison.png
he-samples/examples/secure-query/include/sq_helper_functions.h
he-samples/examples/secure-query/include/sq_types.h
he-samples/examples/secure-query/include/sqclient.h
he-samples/examples/secure-query/include/sqserver.h
he-samples/examples/secure-query/include/timer.h
he-samples/examples/secure-query/src/main.cpp
he-samples/examples/secure-query/src/sqclient.cpp
he-samples/examples/secure-query/src/sqserver.cpp
he-samples/sample-kernels/CMakeLists.txt
he-samples/sample-kernels/README.md
he-samples/sample-kernels/kernel_util.h
he-samples/sample-kernels/kernels/CMakeLists.txt
he-samples/sample-kernels/kernels/omp_utils.h
he-samples/sample-kernels/kernels/palisade/omp_utils_palisade.cpp
he-samples/sample-kernels/kernels/palisade/omp_utils_palisade.h
he-samples/sample-kernels/kernels/palisade/palisade_bfv_kernel_executor.cpp
he-samples/sample-kernels/kernels/palisade/palisade_bfv_kernel_executor.h
he-samples/sample-kernels/kernels/palisade/palisade_ckks_kernel_executor.cpp
he-samples/sample-kernels/kernels/palisade/palisade_ckks_kernel_executor.h
he-samples/sample-kernels/kernels/palisade/palisade_omp_utils.cpp
he-samples/sample-kernels/kernels/palisade/palisade_omp_utils.h
he-samples/sample-kernels/kernels/palisade/palisade_util.h
he-samples/sample-kernels/kernels/seal/seal_bfv_context.cpp
he-samples/sample-kernels/kernels/seal/seal_bfv_context.h
he-samples/sample-kernels/kernels/seal/seal_bfv_kernel_executor.cpp
he-samples/sample-kernels/kernels/seal/seal_bfv_kernel_executor.h
he-samples/sample-kernels/kernels/seal/seal_ckks_context.cpp
he-samples/sample-kernels/kernels/seal/seal_ckks_context.h
he-samples/sample-kernels/kernels/seal/seal_ckks_kernel_executor.cpp
he-samples/sample-kernels/kernels/seal/seal_ckks_kernel_executor.h
he-samples/sample-kernels/kernels/seal/seal_omp_utils.cpp
he-samples/sample-kernels/kernels/seal/seal_omp_utils.h
he-samples/sample-kernels/main.cpp
he-samples/sample-kernels/palisade/palisade_bfv_sample.cpp
he-samples/sample-kernels/palisade/palisade_ckks_sample.cpp
he-samples/sample-kernels/palisade/palisade_util.h
he-samples/sample-kernels/seal/seal_bfv_sample.cpp
he-samples/sample-kernels/seal/seal_ckks_sample.cpp
he-samples/sample-kernels/test/CMakeLists.txt
he-samples/sample-kernels/test/README.md
he-samples/sample-kernels/test/main.cpp
he-samples/sample-kernels/test/test_palisade.cpp
he-samples/sample-kernels/test/test_palisade_bfv_kernel_executor.cpp
he-samples/sample-kernels/test/test_palisade_ckks_kernel_executor.cpp
he-samples/sample-kernels/test/test_seal.cpp
he-samples/sample-kernels/test/test_seal_bfv_kernel_executor.cpp
he-samples/sample-kernels/test/test_seal_ckks_kernel_executor.cpp
he-samples/sample-kernels/test/test_util.h
hekit
kit/PLUGINS.md
kit/README.md
kit/__init__.py
kit/commands/__init__.py
kit/commands/check_deps.py
kit/commands/docker_build.py
kit/commands/init.py
kit/commands/install.py
kit/commands/list_cmd.py
kit/commands/new.py
kit/commands/plugin.py
kit/commands/remove.py
kit/hekit.py
kit/tools/README.md
kit/tools/__init__.py
kit/tools/algebras.py
kit/tools/gen_primes.py
kit/utils/__init__.py
kit/utils/archive.py
kit/utils/component_builder.py
kit/utils/config.py
kit/utils/constants.py
kit/utils/docker_tools.py
kit/utils/files.py
kit/utils/primes.py
kit/utils/spec.py
kit/utils/subparsers.py
kit/utils/tab_completion.py
kit/utils/tsort.py
kit/utils/typing.py
kit/utils/yes.py
mypy.ini
notes/.gitignore
notes/AdvancedTopics.tex
notes/CyclotomicsGaloisNotes.tex
notes/GroupsNotes.tex
notes/GroupsPresentation.tex
notes/InauguralHEPresentation.tex
notes/NumberTheoryNotes.tex
notes/NumberTheoryPresentation.tex
notes/README.md
notes/RingsAndFieldsNotes.tex
notes/RingsAndFieldsPresentation.tex
notes/images/Gauss.pdf
notes/images/HomomorphicData.pdf
notes/images/LatticeWithBasis.pdf
notes/images/Leonhard-Euler.pdf
notes/images/StandardData.pdf
notes/images/clock.pdf
notes/images/erat.pdf
notes/images/fermat.pdf
notes/images/png2pdf.pdf
notes/images/poincare_henri1.pdf
recipes/config-psi.toml
recipes/default.toml
recipes/examples.toml
recipes/sample-kernels.toml
recipes/test.toml
requirements.txt
tests/__init__.py
tests/common_utils.py
tests/input_files/default.config
tests/input_files/default_symlink.config
tests/input_files/default_wrong.config
tests/input_files/depend_wrong.txt
tests/input_files/dependencies.txt
tests/input_files/test.toml
tests/input_files/test_missing_quotes.toml
tests/input_files/test_missing_value.toml
tests/input_files/test_symlink.toml
tests/input_files/test_tsort.toml
tests/input_files/test_two_instances.toml
tests/input_files/test_wrong_format.toml
tests/test_cmd_check_deps.py
tests/test_cmd_docker_build.py
tests/test_cmd_init.py
tests/test_cmd_install.py
tests/test_cmd_list.py
tests/test_cmd_new.py
tests/test_cmd_plugins.py
tests/test_cmd_remove.py
tests/test_integration_algebras.py
tests/test_integration_check_deps.py
tests/test_integration_docker.py
tests/test_integration_gen_primes.py
tests/test_integration_init.py
tests/test_integration_install.py
tests/test_integration_wrong_inputs.py
tests/test_tool_algebras.py
tests/test_util_comp_builder.py
tests/test_util_config.py
tests/test_util_docker_tool.py
tests/test_util_files.py
tests/test_util_primes.py
tests/test_util_spec.py
tests/test_util_subparsers.py
tests/test_util_tab_comp.py
tests/test_util_tsort.py
third-party/README.md
third-party/hello_world_plugin/__init__.py
third-party/hello_world_plugin/hello.py
third-party/hello_world_plugin/plugin.toml
third-party/hello_world_plugin/start.py
tools/README.md