├── .bazelrc
├── .bazelversion
├── .github
└── workflows
│ └── build_and_test.yml
├── .gitignore
├── BUILD
├── CONTRIBUTING.md
├── Cargo.Bazel.lock
├── Cargo.lock
├── LICENSE
├── MODULE.bazel
├── README.md
├── WORKSPACE.bzlmod
├── bazel
├── BUILD
├── add_config_core_openfhe.patch
├── cereal.BUILD
├── fftw.BUILD
├── openfhe.BUILD
└── rapidjson.BUILD
├── cloud
├── README.md
├── core.py
├── examples
│ ├── add_one
│ │ ├── add_one_lut3.mlir
│ │ └── add_one_lut3_main.py
│ ├── jaxite_example.py
│ └── noop.py
├── provision.py
├── requirements.txt
└── tool
├── docker
├── debian-bullseye.Dockerfile
└── ubuntu-jammy.Dockerfile
├── fpga
└── README.md
├── patches
├── 0001-Fetch-YOSYS_DATDIR-from-the-environment.patch
├── BUILD
├── abc.BUILD
├── nlohmann_json.BUILD
├── openfhe.BUILD
├── tfhe.BUILD
├── xls.diff
├── xls_repo.diff
├── xls_visibility.diff
└── yosys.BUILD
├── requirements.txt
└── transpiler
├── BUILD
├── README.md
├── abstract_xls_runner.h
├── abstract_xls_transpiler.h
├── benchmarks
├── BUILD
├── add_char.cc
├── add_int.cc
├── arithmetic_openfhe.cc
└── arithmetic_tfhe.cc
├── cleartext_transpiler.cc
├── cleartext_transpiler.h
├── cleartext_transpiler_test.cc
├── codelab
├── add
│ ├── BUILD
│ ├── add.cc
│ ├── add.h
│ ├── add_openfhe_fhe_demo.cc
│ └── add_test.cc
└── string_cap_char
│ ├── BUILD
│ ├── string_cap_char.cc
│ ├── string_cap_char.h
│ ├── string_cap_char_test.cc
│ └── string_cap_char_tfhe_testbench.cc
├── common_runner.cc
├── common_runner.h
├── common_transpiler.cc
├── common_transpiler.h
├── data
├── BUILD
├── cleartext_data.h
├── cleartext_data_test.cc
├── cleartext_value.h
├── generic_value.h
├── openfhe_data.h
├── openfhe_data_test.cc
├── openfhe_value.h
├── primitives.bzl
├── primitives.cc
├── primitives.h
├── tfhe_data.h
├── tfhe_data_test.cc
└── tfhe_value.h
├── examples
├── add_one
│ ├── BUILD
│ ├── add_one.cc
│ ├── add_one.h
│ ├── add_one.py
│ ├── add_one_lib.py
│ ├── add_one_lib.rs
│ └── add_one_test.py
├── calculator
│ ├── BUILD
│ ├── calculator.cc
│ ├── calculator.h
│ ├── calculator_cleartext_testbench.cc
│ ├── calculator_openfhe_testbench.cc
│ ├── calculator_test.cc
│ ├── calculator_testbench.cc
│ └── calculator_tfhe_testbench.cc
├── fibonacci
│ ├── BUILD
│ ├── fibonacci.cc
│ ├── fibonacci.h
│ ├── fibonacci.py
│ ├── fibonacci_openfhe_testbench.cc
│ ├── fibonacci_rs_lib.rs
│ ├── fibonacci_sequence.cc
│ ├── fibonacci_sequence.h
│ ├── fibonacci_sequence_cleartext_testbench.cc
│ ├── fibonacci_sequence_openfhe_testbench.cc
│ ├── fibonacci_sequence_tfhe_testbench.cc
│ ├── fibonacci_test.cc
│ ├── fibonacci_testbench.cc
│ └── fibonacci_tfhe_testbench.cc
├── hangman
│ ├── BUILD
│ ├── hangman.py
│ ├── hangman_api.cc
│ ├── hangman_api.h
│ ├── hangman_client.cc
│ ├── hangman_client.h
│ ├── hangman_client_main.cc
│ ├── hangman_client_test.cc
│ └── hangman_rs_lib.rs
├── ifte
│ ├── BUILD
│ ├── ifte.cc
│ ├── ifte.h
│ ├── ifte_cleartext_testbench.cc
│ ├── ifte_openfhe_testbench.cc
│ ├── ifte_rs_lib.rs
│ └── ifte_tfhe_testbench.cc
├── image_processing
│ ├── BUILD
│ ├── commons.cc
│ ├── commons.h
│ ├── image_processing_cleartext_test.cc
│ ├── image_processing_cleartext_testbench.cc
│ ├── image_processing_openfhe_testbench.cc
│ ├── image_processing_testbench.cc
│ ├── image_processing_tfhe_testbench.cc
│ ├── kernel_gaussian_blur.cc
│ ├── kernel_gaussian_blur.h
│ ├── kernel_gaussian_blur.py
│ ├── kernel_sharpen.cc
│ ├── kernel_sharpen.h
│ ├── ricker_wavelet.cc
│ ├── ricker_wavelet.h
│ ├── ricker_wavelet_rs_lib.rs
│ └── ricker_wavelet_test.cc
├── memory
│ ├── BUILD
│ ├── memory.cc
│ ├── memory.h
│ └── memory_test.cc
├── pir
│ ├── BUILD
│ ├── pir_api.cc
│ ├── pir_api.h
│ ├── pir_api_tfhe_test.cc
│ ├── pir_client_main.cc
│ ├── pir_cloud_service.cc
│ └── pir_cloud_service.h
├── redact_ssn
│ ├── BUILD
│ ├── redact_ssn.cc
│ ├── redact_ssn.h
│ ├── redact_ssn_openfhe_testbench.cc
│ ├── redact_ssn_test.cc
│ ├── redact_ssn_tfhe_test.cc
│ └── redact_ssn_tfhe_testbench.cc
├── rock_paper_scissor
│ ├── BUILD
│ ├── rock_paper_scissor.cc
│ ├── rock_paper_scissor.h
│ ├── rock_paper_scissor_openfhe_testbench.cc
│ ├── rock_paper_scissor_rs_lib.rs
│ ├── rock_paper_scissor_test.cc
│ └── rock_paper_scissor_tfhe_testbench.cc
├── simple_sum
│ ├── BUILD
│ ├── simple_sum.cc
│ ├── simple_sum.h
│ ├── simple_sum_cleartext_testbench.cc
│ ├── simple_sum_openfhe_testbench.cc
│ ├── simple_sum_rs_lib.rs
│ ├── simple_sum_test.cc
│ └── simple_sum_tfhe_testbench.cc
├── sqrt
│ ├── BUILD
│ ├── sqrt.cc
│ ├── sqrt.h
│ ├── sqrt_cleartext_testbench.cc
│ ├── sqrt_openfhe_testbench.cc
│ ├── sqrt_rs_lib.rs
│ ├── sqrt_test.cc
│ └── sqrt_tfhe_testbench.cc
├── string_cap
│ ├── BUILD
│ ├── string_cap.cc
│ ├── string_cap.h
│ ├── string_cap_cleartext_testbench.cc
│ ├── string_cap_openfhe_testbench.cc
│ ├── string_cap_test.cc
│ └── string_cap_tfhe_testbench.cc
├── string_cap_char
│ ├── BUILD
│ ├── string_cap_char.cc
│ ├── string_cap_char.h
│ ├── string_cap_char_cleartext_testbench.cc
│ ├── string_cap_char_openfhe_testbench.cc
│ ├── string_cap_char_test.cc
│ └── string_cap_char_tfhe_testbench.cc
├── string_reverse
│ ├── BUILD
│ ├── string_reverse.cc
│ ├── string_reverse.h
│ ├── string_reverse_cleartext_testbench.cc
│ ├── string_reverse_openfhe_testbench.cc
│ ├── string_reverse_testbench.cc
│ └── string_reverse_tfhe_testbench.cc
├── structs
│ ├── BUILD
│ ├── array_of_array_of_structs.cc
│ ├── array_of_array_of_structs.h
│ ├── array_of_array_of_structs_openfhe_testbench.cc
│ ├── array_of_array_of_structs_tfhe_testbench.cc
│ ├── array_of_structs.cc
│ ├── array_of_structs.h
│ ├── array_of_structs_3d.cc
│ ├── array_of_structs_3d_cleartext_testbench.cc
│ ├── array_of_structs_3d_openfhe_testbench.cc
│ ├── array_of_structs_3d_tfhe_testbench.cc
│ ├── array_of_structs_cleartext_testbench.cc
│ ├── array_of_structs_tfhe_testbench.cc
│ ├── return_struct.cc
│ ├── return_struct.h
│ ├── return_struct_cleartext_testbench.cc
│ ├── return_struct_openfhe_testbench.cc
│ ├── return_struct_tfhe_testbench.cc
│ ├── return_struct_with_inout.cc
│ ├── return_struct_with_inout.h
│ ├── return_struct_with_inout_openfhe_testbench.cc
│ ├── return_struct_with_inout_tfhe_testbench.cc
│ ├── simple_struct.cc
│ ├── simple_struct.h
│ ├── simple_struct_openfhe_testbench.cc
│ ├── simple_struct_tfhe_testbench.cc
│ ├── struct_of_structs.cc
│ ├── struct_of_structs.h
│ ├── struct_of_structs_cleartext_testbench.cc
│ ├── struct_of_structs_tfhe_testbench.cc
│ ├── struct_with_array.cc
│ ├── struct_with_array.h
│ ├── struct_with_array_cleartext_testbench.cc
│ ├── struct_with_array_tfhe_testbench.cc
│ ├── struct_with_struct_array.cc
│ ├── struct_with_struct_array.h
│ ├── struct_with_struct_array_tfhe_testbench.cc
│ ├── templated_struct.cc
│ ├── templated_struct.h
│ ├── templated_struct2.cc
│ ├── templated_struct2.h
│ ├── templated_struct2_cleartext_test.cc
│ ├── templated_struct2_openfhe_test.cc
│ ├── templated_struct2_tfhe_test.cc
│ └── templated_struct_cleartext_testbench.cc
├── sum3d
│ ├── BUILD
│ ├── inc3d.cc
│ ├── sum3d.cc
│ ├── sum3d.h
│ ├── sum3d_cleartext_testbench.cc
│ ├── sum3d_openfhe_testbench.cc
│ └── sum3d_tfhe_testbench.cc
└── templates
│ ├── BUILD
│ ├── mul.h
│ ├── mul16.cc
│ ├── mul16.h
│ ├── mul8.cc
│ ├── mul8.h
│ ├── mul_rs_lib.rs
│ └── mul_tfhe_testbench.cc
├── fhe.bzl
├── fhe_common.bzl
├── fhe_demo.bzl
├── fhe_structs.bzl
├── fhe_xls.bzl
├── fhe_yosys.bzl
├── g3doc
├── build_your_own_demo.md
└── transpiler_design.md
├── graph.h
├── graph_test.cc
├── images
├── FHE-IR.png
├── FHE-testbench.png
├── screenshot_hangman.png
└── screenshot_string_cap.png
├── interpreted_openfhe_transpiler.cc
├── interpreted_openfhe_transpiler.h
├── interpreted_tfhe_transpiler.cc
├── interpreted_tfhe_transpiler.h
├── jaxite
├── BUILD
├── fhe_py.bzl
├── jaxite_xls_transpiler.cc
├── jaxite_xls_transpiler.h
├── jaxite_xls_transpiler_test.cc
├── testing.cc
├── testing.h
├── transpiler_main.cc
├── yosys_transpiler.cc
├── yosys_transpiler.h
└── yosys_transpiler_test.cc
├── metadata_utils.cc
├── metadata_utils.h
├── metadata_utils_test.cc
├── netlist_utils.cc
├── netlist_utils.h
├── netlist_utils_test.cc
├── openfhe_runner.cc
├── openfhe_runner.h
├── openfhe_transpiler.cc
├── openfhe_transpiler.h
├── parsers.bzl
├── pipeline_enums.h
├── rust
├── BUILD
├── fhe_rs.bzl
├── tfhe_rs_templates.h
├── transpiler_main.cc
├── yosys_transpiler.cc
├── yosys_transpiler.h
└── yosys_transpiler_test.cc
├── struct_transpiler
├── BUILD
├── convert_struct_to_encoded.cc
├── convert_struct_to_encoded.h
├── convert_struct_to_encoded_test.cc
└── struct_transpiler_main.cc
├── tensorflow
├── README.md
└── examples
│ ├── hello_world
│ ├── BUILD
│ ├── hello_world.tosa.mlir
│ └── hello_world_testbench.rs
│ └── micro_speech
│ ├── Cargo.toml
│ ├── micro_speech.tosa.mlir
│ └── src
│ ├── main.rs
│ └── micro_speech
│ ├── mod.rs
│ └── util.rs
├── tests
├── BUILD
├── array.cc
├── array_of_scalars_cleartext_test.cc
├── array_of_scalars_openfhe_test.cc
├── array_of_scalars_tfhe_test.cc
├── array_of_structs_cleartext_test.cc
├── array_of_structs_openfhe_test.cc
├── array_of_structs_tfhe_test.cc
├── char.cc
├── control_structure_test.cc
├── for.cc
├── function.cc
├── if.cc
├── int.cc
├── issue_36.cc
├── issue_36.h
├── long.cc
├── namespaced_struct.cc
├── namespaced_struct.h
├── nested_for.cc
├── openfhe_control_structure_test.cc
├── openfhe_test_util.cc
├── openfhe_test_util.h
├── openfhe_types_test.cc
├── out_params.cc
├── out_params_test.cc
├── out_params_with_return.cc
├── single_out_param.cc
├── single_out_param_with_return.cc
├── struct.cc
├── struct.h
├── struct2.cc
├── switch.cc
├── tfhe_test_util.cc
├── tfhe_test_util.h
└── types_test.cc
├── tfhe_runner.cc
├── tfhe_runner.h
├── tfhe_runner_test.cc
├── tfhe_transpiler.cc
├── tfhe_transpiler.h
├── tfhe_transpiler_test.cc
├── tools
├── BUILD
└── netlist_analyzer_main.cc
├── transpiler_main.cc
├── util
├── BUILD
├── runfiles.cc
├── runfiles.h
├── string.cc
├── string.h
├── subprocess.cc
├── subprocess.h
├── temp_file.cc
└── temp_file.h
├── yosys
├── BUILD
├── lut_cells.liberty
├── map_lut_to_lutmux.v
├── map_lut_to_lutmux2.v
├── map_lut_to_lutmux3.v
├── map_lut_to_lutmux4.v
├── map_lut_to_lutmux5.v
├── map_lut_to_lutmux6.v
├── openfhe_cells.liberty
├── tfhe-rs_cells.liberty
└── tfhe_cells.liberty
├── yosys_cleartext_runner.cc
├── yosys_cleartext_runner.h
├── yosys_cleartext_runner_test.cc
├── yosys_openfhe_runner.cc
├── yosys_openfhe_runner.h
├── yosys_tfhe_runner.cc
├── yosys_tfhe_runner.h
├── yosys_transpiler.cc
└── yosys_transpiler.h
/.bazelrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/.bazelrc
--------------------------------------------------------------------------------
/.bazelversion:
--------------------------------------------------------------------------------
1 | 7.4.1
--------------------------------------------------------------------------------
/.github/workflows/build_and_test.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/.github/workflows/build_and_test.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/.gitignore
--------------------------------------------------------------------------------
/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/BUILD
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/CONTRIBUTING.md
--------------------------------------------------------------------------------
/Cargo.Bazel.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/Cargo.Bazel.lock
--------------------------------------------------------------------------------
/Cargo.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/Cargo.lock
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/LICENSE
--------------------------------------------------------------------------------
/MODULE.bazel:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/MODULE.bazel
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/README.md
--------------------------------------------------------------------------------
/WORKSPACE.bzlmod:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/WORKSPACE.bzlmod
--------------------------------------------------------------------------------
/bazel/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/bazel/BUILD
--------------------------------------------------------------------------------
/bazel/add_config_core_openfhe.patch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/bazel/add_config_core_openfhe.patch
--------------------------------------------------------------------------------
/bazel/cereal.BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/bazel/cereal.BUILD
--------------------------------------------------------------------------------
/bazel/fftw.BUILD:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/bazel/openfhe.BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/bazel/openfhe.BUILD
--------------------------------------------------------------------------------
/bazel/rapidjson.BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/bazel/rapidjson.BUILD
--------------------------------------------------------------------------------
/cloud/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/cloud/README.md
--------------------------------------------------------------------------------
/cloud/core.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/cloud/core.py
--------------------------------------------------------------------------------
/cloud/examples/add_one/add_one_lut3.mlir:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/cloud/examples/add_one/add_one_lut3.mlir
--------------------------------------------------------------------------------
/cloud/examples/add_one/add_one_lut3_main.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/cloud/examples/add_one/add_one_lut3_main.py
--------------------------------------------------------------------------------
/cloud/examples/jaxite_example.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/cloud/examples/jaxite_example.py
--------------------------------------------------------------------------------
/cloud/examples/noop.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/cloud/examples/noop.py
--------------------------------------------------------------------------------
/cloud/provision.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/cloud/provision.py
--------------------------------------------------------------------------------
/cloud/requirements.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/cloud/requirements.txt
--------------------------------------------------------------------------------
/cloud/tool:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/cloud/tool
--------------------------------------------------------------------------------
/docker/debian-bullseye.Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/docker/debian-bullseye.Dockerfile
--------------------------------------------------------------------------------
/docker/ubuntu-jammy.Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/docker/ubuntu-jammy.Dockerfile
--------------------------------------------------------------------------------
/fpga/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/fpga/README.md
--------------------------------------------------------------------------------
/patches/0001-Fetch-YOSYS_DATDIR-from-the-environment.patch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/patches/0001-Fetch-YOSYS_DATDIR-from-the-environment.patch
--------------------------------------------------------------------------------
/patches/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/patches/BUILD
--------------------------------------------------------------------------------
/patches/abc.BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/patches/abc.BUILD
--------------------------------------------------------------------------------
/patches/nlohmann_json.BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/patches/nlohmann_json.BUILD
--------------------------------------------------------------------------------
/patches/openfhe.BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/patches/openfhe.BUILD
--------------------------------------------------------------------------------
/patches/tfhe.BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/patches/tfhe.BUILD
--------------------------------------------------------------------------------
/patches/xls.diff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/patches/xls.diff
--------------------------------------------------------------------------------
/patches/xls_repo.diff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/patches/xls_repo.diff
--------------------------------------------------------------------------------
/patches/xls_visibility.diff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/patches/xls_visibility.diff
--------------------------------------------------------------------------------
/patches/yosys.BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/patches/yosys.BUILD
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/requirements.txt
--------------------------------------------------------------------------------
/transpiler/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/BUILD
--------------------------------------------------------------------------------
/transpiler/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/README.md
--------------------------------------------------------------------------------
/transpiler/abstract_xls_runner.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/abstract_xls_runner.h
--------------------------------------------------------------------------------
/transpiler/abstract_xls_transpiler.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/abstract_xls_transpiler.h
--------------------------------------------------------------------------------
/transpiler/benchmarks/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/benchmarks/BUILD
--------------------------------------------------------------------------------
/transpiler/benchmarks/add_char.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/benchmarks/add_char.cc
--------------------------------------------------------------------------------
/transpiler/benchmarks/add_int.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/benchmarks/add_int.cc
--------------------------------------------------------------------------------
/transpiler/benchmarks/arithmetic_openfhe.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/benchmarks/arithmetic_openfhe.cc
--------------------------------------------------------------------------------
/transpiler/benchmarks/arithmetic_tfhe.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/benchmarks/arithmetic_tfhe.cc
--------------------------------------------------------------------------------
/transpiler/cleartext_transpiler.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/cleartext_transpiler.cc
--------------------------------------------------------------------------------
/transpiler/cleartext_transpiler.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/cleartext_transpiler.h
--------------------------------------------------------------------------------
/transpiler/cleartext_transpiler_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/cleartext_transpiler_test.cc
--------------------------------------------------------------------------------
/transpiler/codelab/add/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/codelab/add/BUILD
--------------------------------------------------------------------------------
/transpiler/codelab/add/add.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/codelab/add/add.cc
--------------------------------------------------------------------------------
/transpiler/codelab/add/add.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/codelab/add/add.h
--------------------------------------------------------------------------------
/transpiler/codelab/add/add_openfhe_fhe_demo.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/codelab/add/add_openfhe_fhe_demo.cc
--------------------------------------------------------------------------------
/transpiler/codelab/add/add_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/codelab/add/add_test.cc
--------------------------------------------------------------------------------
/transpiler/codelab/string_cap_char/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/codelab/string_cap_char/BUILD
--------------------------------------------------------------------------------
/transpiler/codelab/string_cap_char/string_cap_char.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/codelab/string_cap_char/string_cap_char.cc
--------------------------------------------------------------------------------
/transpiler/codelab/string_cap_char/string_cap_char.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/codelab/string_cap_char/string_cap_char.h
--------------------------------------------------------------------------------
/transpiler/codelab/string_cap_char/string_cap_char_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/codelab/string_cap_char/string_cap_char_test.cc
--------------------------------------------------------------------------------
/transpiler/codelab/string_cap_char/string_cap_char_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/codelab/string_cap_char/string_cap_char_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/common_runner.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/common_runner.cc
--------------------------------------------------------------------------------
/transpiler/common_runner.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/common_runner.h
--------------------------------------------------------------------------------
/transpiler/common_transpiler.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/common_transpiler.cc
--------------------------------------------------------------------------------
/transpiler/common_transpiler.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/common_transpiler.h
--------------------------------------------------------------------------------
/transpiler/data/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/data/BUILD
--------------------------------------------------------------------------------
/transpiler/data/cleartext_data.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/data/cleartext_data.h
--------------------------------------------------------------------------------
/transpiler/data/cleartext_data_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/data/cleartext_data_test.cc
--------------------------------------------------------------------------------
/transpiler/data/cleartext_value.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/data/cleartext_value.h
--------------------------------------------------------------------------------
/transpiler/data/generic_value.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/data/generic_value.h
--------------------------------------------------------------------------------
/transpiler/data/openfhe_data.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/data/openfhe_data.h
--------------------------------------------------------------------------------
/transpiler/data/openfhe_data_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/data/openfhe_data_test.cc
--------------------------------------------------------------------------------
/transpiler/data/openfhe_value.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/data/openfhe_value.h
--------------------------------------------------------------------------------
/transpiler/data/primitives.bzl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/data/primitives.bzl
--------------------------------------------------------------------------------
/transpiler/data/primitives.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/data/primitives.cc
--------------------------------------------------------------------------------
/transpiler/data/primitives.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/data/primitives.h
--------------------------------------------------------------------------------
/transpiler/data/tfhe_data.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/data/tfhe_data.h
--------------------------------------------------------------------------------
/transpiler/data/tfhe_data_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/data/tfhe_data_test.cc
--------------------------------------------------------------------------------
/transpiler/data/tfhe_value.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/data/tfhe_value.h
--------------------------------------------------------------------------------
/transpiler/examples/add_one/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/add_one/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/add_one/add_one.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/add_one/add_one.cc
--------------------------------------------------------------------------------
/transpiler/examples/add_one/add_one.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/add_one/add_one.h
--------------------------------------------------------------------------------
/transpiler/examples/add_one/add_one.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/add_one/add_one.py
--------------------------------------------------------------------------------
/transpiler/examples/add_one/add_one_lib.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/add_one/add_one_lib.py
--------------------------------------------------------------------------------
/transpiler/examples/add_one/add_one_lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/add_one/add_one_lib.rs
--------------------------------------------------------------------------------
/transpiler/examples/add_one/add_one_test.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/add_one/add_one_test.py
--------------------------------------------------------------------------------
/transpiler/examples/calculator/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/calculator/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/calculator/calculator.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/calculator/calculator.cc
--------------------------------------------------------------------------------
/transpiler/examples/calculator/calculator.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/calculator/calculator.h
--------------------------------------------------------------------------------
/transpiler/examples/calculator/calculator_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/calculator/calculator_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/calculator/calculator_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/calculator/calculator_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/calculator/calculator_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/calculator/calculator_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/calculator/calculator_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/calculator/calculator_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/calculator/calculator_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/calculator/calculator_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/fibonacci/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/fibonacci/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/fibonacci/fibonacci.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/fibonacci/fibonacci.cc
--------------------------------------------------------------------------------
/transpiler/examples/fibonacci/fibonacci.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/fibonacci/fibonacci.h
--------------------------------------------------------------------------------
/transpiler/examples/fibonacci/fibonacci.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/fibonacci/fibonacci.py
--------------------------------------------------------------------------------
/transpiler/examples/fibonacci/fibonacci_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/fibonacci/fibonacci_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/fibonacci/fibonacci_rs_lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/fibonacci/fibonacci_rs_lib.rs
--------------------------------------------------------------------------------
/transpiler/examples/fibonacci/fibonacci_sequence.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/fibonacci/fibonacci_sequence.cc
--------------------------------------------------------------------------------
/transpiler/examples/fibonacci/fibonacci_sequence.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/fibonacci/fibonacci_sequence.h
--------------------------------------------------------------------------------
/transpiler/examples/fibonacci/fibonacci_sequence_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/fibonacci/fibonacci_sequence_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/fibonacci/fibonacci_sequence_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/fibonacci/fibonacci_sequence_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/fibonacci/fibonacci_sequence_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/fibonacci/fibonacci_sequence_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/fibonacci/fibonacci_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/fibonacci/fibonacci_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/fibonacci/fibonacci_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/fibonacci/fibonacci_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/fibonacci/fibonacci_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/fibonacci/fibonacci_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/hangman/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/hangman/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/hangman/hangman.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/hangman/hangman.py
--------------------------------------------------------------------------------
/transpiler/examples/hangman/hangman_api.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/hangman/hangman_api.cc
--------------------------------------------------------------------------------
/transpiler/examples/hangman/hangman_api.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/hangman/hangman_api.h
--------------------------------------------------------------------------------
/transpiler/examples/hangman/hangman_client.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/hangman/hangman_client.cc
--------------------------------------------------------------------------------
/transpiler/examples/hangman/hangman_client.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/hangman/hangman_client.h
--------------------------------------------------------------------------------
/transpiler/examples/hangman/hangman_client_main.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/hangman/hangman_client_main.cc
--------------------------------------------------------------------------------
/transpiler/examples/hangman/hangman_client_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/hangman/hangman_client_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/hangman/hangman_rs_lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/hangman/hangman_rs_lib.rs
--------------------------------------------------------------------------------
/transpiler/examples/ifte/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/ifte/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/ifte/ifte.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/ifte/ifte.cc
--------------------------------------------------------------------------------
/transpiler/examples/ifte/ifte.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/ifte/ifte.h
--------------------------------------------------------------------------------
/transpiler/examples/ifte/ifte_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/ifte/ifte_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/ifte/ifte_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/ifte/ifte_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/ifte/ifte_rs_lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/ifte/ifte_rs_lib.rs
--------------------------------------------------------------------------------
/transpiler/examples/ifte/ifte_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/ifte/ifte_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/commons.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/commons.cc
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/commons.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/commons.h
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/image_processing_cleartext_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/image_processing_cleartext_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/image_processing_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/image_processing_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/image_processing_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/image_processing_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/image_processing_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/image_processing_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/image_processing_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/image_processing_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/kernel_gaussian_blur.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/kernel_gaussian_blur.cc
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/kernel_gaussian_blur.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/kernel_gaussian_blur.h
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/kernel_gaussian_blur.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/kernel_gaussian_blur.py
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/kernel_sharpen.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/kernel_sharpen.cc
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/kernel_sharpen.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/kernel_sharpen.h
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/ricker_wavelet.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/ricker_wavelet.cc
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/ricker_wavelet.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/ricker_wavelet.h
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/ricker_wavelet_rs_lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/ricker_wavelet_rs_lib.rs
--------------------------------------------------------------------------------
/transpiler/examples/image_processing/ricker_wavelet_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/image_processing/ricker_wavelet_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/memory/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/memory/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/memory/memory.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/memory/memory.cc
--------------------------------------------------------------------------------
/transpiler/examples/memory/memory.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/memory/memory.h
--------------------------------------------------------------------------------
/transpiler/examples/memory/memory_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/memory/memory_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/pir/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/pir/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/pir/pir_api.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/pir/pir_api.cc
--------------------------------------------------------------------------------
/transpiler/examples/pir/pir_api.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/pir/pir_api.h
--------------------------------------------------------------------------------
/transpiler/examples/pir/pir_api_tfhe_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/pir/pir_api_tfhe_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/pir/pir_client_main.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/pir/pir_client_main.cc
--------------------------------------------------------------------------------
/transpiler/examples/pir/pir_cloud_service.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/pir/pir_cloud_service.cc
--------------------------------------------------------------------------------
/transpiler/examples/pir/pir_cloud_service.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/pir/pir_cloud_service.h
--------------------------------------------------------------------------------
/transpiler/examples/redact_ssn/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/redact_ssn/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/redact_ssn/redact_ssn.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/redact_ssn/redact_ssn.cc
--------------------------------------------------------------------------------
/transpiler/examples/redact_ssn/redact_ssn.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/redact_ssn/redact_ssn.h
--------------------------------------------------------------------------------
/transpiler/examples/redact_ssn/redact_ssn_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/redact_ssn/redact_ssn_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/redact_ssn/redact_ssn_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/redact_ssn/redact_ssn_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/redact_ssn/redact_ssn_tfhe_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/redact_ssn/redact_ssn_tfhe_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/redact_ssn/redact_ssn_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/redact_ssn/redact_ssn_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/rock_paper_scissor/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/rock_paper_scissor/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/rock_paper_scissor/rock_paper_scissor.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/rock_paper_scissor/rock_paper_scissor.cc
--------------------------------------------------------------------------------
/transpiler/examples/rock_paper_scissor/rock_paper_scissor.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/rock_paper_scissor/rock_paper_scissor.h
--------------------------------------------------------------------------------
/transpiler/examples/rock_paper_scissor/rock_paper_scissor_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/rock_paper_scissor/rock_paper_scissor_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/rock_paper_scissor/rock_paper_scissor_rs_lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/rock_paper_scissor/rock_paper_scissor_rs_lib.rs
--------------------------------------------------------------------------------
/transpiler/examples/rock_paper_scissor/rock_paper_scissor_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/rock_paper_scissor/rock_paper_scissor_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/rock_paper_scissor/rock_paper_scissor_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/rock_paper_scissor/rock_paper_scissor_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/simple_sum/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/simple_sum/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/simple_sum/simple_sum.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/simple_sum/simple_sum.cc
--------------------------------------------------------------------------------
/transpiler/examples/simple_sum/simple_sum.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/simple_sum/simple_sum.h
--------------------------------------------------------------------------------
/transpiler/examples/simple_sum/simple_sum_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/simple_sum/simple_sum_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/simple_sum/simple_sum_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/simple_sum/simple_sum_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/simple_sum/simple_sum_rs_lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/simple_sum/simple_sum_rs_lib.rs
--------------------------------------------------------------------------------
/transpiler/examples/simple_sum/simple_sum_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/simple_sum/simple_sum_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/simple_sum/simple_sum_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/simple_sum/simple_sum_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/sqrt/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sqrt/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/sqrt/sqrt.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sqrt/sqrt.cc
--------------------------------------------------------------------------------
/transpiler/examples/sqrt/sqrt.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sqrt/sqrt.h
--------------------------------------------------------------------------------
/transpiler/examples/sqrt/sqrt_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sqrt/sqrt_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/sqrt/sqrt_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sqrt/sqrt_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/sqrt/sqrt_rs_lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sqrt/sqrt_rs_lib.rs
--------------------------------------------------------------------------------
/transpiler/examples/sqrt/sqrt_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sqrt/sqrt_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/sqrt/sqrt_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sqrt/sqrt_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_cap/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_cap/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/string_cap/string_cap.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_cap/string_cap.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_cap/string_cap.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_cap/string_cap.h
--------------------------------------------------------------------------------
/transpiler/examples/string_cap/string_cap_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_cap/string_cap_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_cap/string_cap_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_cap/string_cap_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_cap/string_cap_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_cap/string_cap_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_cap/string_cap_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_cap/string_cap_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_cap_char/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_cap_char/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/string_cap_char/string_cap_char.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_cap_char/string_cap_char.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_cap_char/string_cap_char.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_cap_char/string_cap_char.h
--------------------------------------------------------------------------------
/transpiler/examples/string_cap_char/string_cap_char_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_cap_char/string_cap_char_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_cap_char/string_cap_char_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_cap_char/string_cap_char_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_cap_char/string_cap_char_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_cap_char/string_cap_char_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_cap_char/string_cap_char_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_cap_char/string_cap_char_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_reverse/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_reverse/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/string_reverse/string_reverse.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_reverse/string_reverse.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_reverse/string_reverse.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_reverse/string_reverse.h
--------------------------------------------------------------------------------
/transpiler/examples/string_reverse/string_reverse_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_reverse/string_reverse_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_reverse/string_reverse_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_reverse/string_reverse_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_reverse/string_reverse_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_reverse/string_reverse_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/string_reverse/string_reverse_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/string_reverse/string_reverse_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/structs/array_of_array_of_structs.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/array_of_array_of_structs.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/array_of_array_of_structs.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/array_of_array_of_structs.h
--------------------------------------------------------------------------------
/transpiler/examples/structs/array_of_array_of_structs_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/array_of_array_of_structs_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/array_of_array_of_structs_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/array_of_array_of_structs_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/array_of_structs.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/array_of_structs.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/array_of_structs.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/array_of_structs.h
--------------------------------------------------------------------------------
/transpiler/examples/structs/array_of_structs_3d.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/array_of_structs_3d.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/array_of_structs_3d_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/array_of_structs_3d_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/array_of_structs_3d_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/array_of_structs_3d_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/array_of_structs_3d_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/array_of_structs_3d_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/array_of_structs_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/array_of_structs_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/array_of_structs_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/array_of_structs_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/return_struct.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/return_struct.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/return_struct.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/return_struct.h
--------------------------------------------------------------------------------
/transpiler/examples/structs/return_struct_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/return_struct_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/return_struct_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/return_struct_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/return_struct_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/return_struct_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/return_struct_with_inout.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/return_struct_with_inout.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/return_struct_with_inout.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/return_struct_with_inout.h
--------------------------------------------------------------------------------
/transpiler/examples/structs/return_struct_with_inout_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/return_struct_with_inout_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/return_struct_with_inout_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/return_struct_with_inout_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/simple_struct.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/simple_struct.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/simple_struct.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/simple_struct.h
--------------------------------------------------------------------------------
/transpiler/examples/structs/simple_struct_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/simple_struct_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/simple_struct_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/simple_struct_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/struct_of_structs.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/struct_of_structs.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/struct_of_structs.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/struct_of_structs.h
--------------------------------------------------------------------------------
/transpiler/examples/structs/struct_of_structs_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/struct_of_structs_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/struct_of_structs_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/struct_of_structs_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/struct_with_array.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/struct_with_array.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/struct_with_array.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/struct_with_array.h
--------------------------------------------------------------------------------
/transpiler/examples/structs/struct_with_array_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/struct_with_array_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/struct_with_array_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/struct_with_array_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/struct_with_struct_array.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/struct_with_struct_array.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/struct_with_struct_array.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/struct_with_struct_array.h
--------------------------------------------------------------------------------
/transpiler/examples/structs/struct_with_struct_array_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/struct_with_struct_array_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/templated_struct.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/templated_struct.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/templated_struct.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/templated_struct.h
--------------------------------------------------------------------------------
/transpiler/examples/structs/templated_struct2.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/templated_struct2.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/templated_struct2.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/templated_struct2.h
--------------------------------------------------------------------------------
/transpiler/examples/structs/templated_struct2_cleartext_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/templated_struct2_cleartext_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/templated_struct2_openfhe_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/templated_struct2_openfhe_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/templated_struct2_tfhe_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/templated_struct2_tfhe_test.cc
--------------------------------------------------------------------------------
/transpiler/examples/structs/templated_struct_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/structs/templated_struct_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/sum3d/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sum3d/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/sum3d/inc3d.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sum3d/inc3d.cc
--------------------------------------------------------------------------------
/transpiler/examples/sum3d/sum3d.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sum3d/sum3d.cc
--------------------------------------------------------------------------------
/transpiler/examples/sum3d/sum3d.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sum3d/sum3d.h
--------------------------------------------------------------------------------
/transpiler/examples/sum3d/sum3d_cleartext_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sum3d/sum3d_cleartext_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/sum3d/sum3d_openfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sum3d/sum3d_openfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/sum3d/sum3d_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/sum3d/sum3d_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/examples/templates/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/templates/BUILD
--------------------------------------------------------------------------------
/transpiler/examples/templates/mul.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/templates/mul.h
--------------------------------------------------------------------------------
/transpiler/examples/templates/mul16.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/templates/mul16.cc
--------------------------------------------------------------------------------
/transpiler/examples/templates/mul16.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/templates/mul16.h
--------------------------------------------------------------------------------
/transpiler/examples/templates/mul8.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/templates/mul8.cc
--------------------------------------------------------------------------------
/transpiler/examples/templates/mul8.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/templates/mul8.h
--------------------------------------------------------------------------------
/transpiler/examples/templates/mul_rs_lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/templates/mul_rs_lib.rs
--------------------------------------------------------------------------------
/transpiler/examples/templates/mul_tfhe_testbench.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/examples/templates/mul_tfhe_testbench.cc
--------------------------------------------------------------------------------
/transpiler/fhe.bzl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/fhe.bzl
--------------------------------------------------------------------------------
/transpiler/fhe_common.bzl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/fhe_common.bzl
--------------------------------------------------------------------------------
/transpiler/fhe_demo.bzl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/fhe_demo.bzl
--------------------------------------------------------------------------------
/transpiler/fhe_structs.bzl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/fhe_structs.bzl
--------------------------------------------------------------------------------
/transpiler/fhe_xls.bzl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/fhe_xls.bzl
--------------------------------------------------------------------------------
/transpiler/fhe_yosys.bzl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/fhe_yosys.bzl
--------------------------------------------------------------------------------
/transpiler/g3doc/build_your_own_demo.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/g3doc/build_your_own_demo.md
--------------------------------------------------------------------------------
/transpiler/g3doc/transpiler_design.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/g3doc/transpiler_design.md
--------------------------------------------------------------------------------
/transpiler/graph.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/graph.h
--------------------------------------------------------------------------------
/transpiler/graph_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/graph_test.cc
--------------------------------------------------------------------------------
/transpiler/images/FHE-IR.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/images/FHE-IR.png
--------------------------------------------------------------------------------
/transpiler/images/FHE-testbench.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/images/FHE-testbench.png
--------------------------------------------------------------------------------
/transpiler/images/screenshot_hangman.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/images/screenshot_hangman.png
--------------------------------------------------------------------------------
/transpiler/images/screenshot_string_cap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/images/screenshot_string_cap.png
--------------------------------------------------------------------------------
/transpiler/interpreted_openfhe_transpiler.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/interpreted_openfhe_transpiler.cc
--------------------------------------------------------------------------------
/transpiler/interpreted_openfhe_transpiler.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/interpreted_openfhe_transpiler.h
--------------------------------------------------------------------------------
/transpiler/interpreted_tfhe_transpiler.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/interpreted_tfhe_transpiler.cc
--------------------------------------------------------------------------------
/transpiler/interpreted_tfhe_transpiler.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/interpreted_tfhe_transpiler.h
--------------------------------------------------------------------------------
/transpiler/jaxite/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/jaxite/BUILD
--------------------------------------------------------------------------------
/transpiler/jaxite/fhe_py.bzl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/jaxite/fhe_py.bzl
--------------------------------------------------------------------------------
/transpiler/jaxite/jaxite_xls_transpiler.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/jaxite/jaxite_xls_transpiler.cc
--------------------------------------------------------------------------------
/transpiler/jaxite/jaxite_xls_transpiler.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/jaxite/jaxite_xls_transpiler.h
--------------------------------------------------------------------------------
/transpiler/jaxite/jaxite_xls_transpiler_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/jaxite/jaxite_xls_transpiler_test.cc
--------------------------------------------------------------------------------
/transpiler/jaxite/testing.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/jaxite/testing.cc
--------------------------------------------------------------------------------
/transpiler/jaxite/testing.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/jaxite/testing.h
--------------------------------------------------------------------------------
/transpiler/jaxite/transpiler_main.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/jaxite/transpiler_main.cc
--------------------------------------------------------------------------------
/transpiler/jaxite/yosys_transpiler.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/jaxite/yosys_transpiler.cc
--------------------------------------------------------------------------------
/transpiler/jaxite/yosys_transpiler.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/jaxite/yosys_transpiler.h
--------------------------------------------------------------------------------
/transpiler/jaxite/yosys_transpiler_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/jaxite/yosys_transpiler_test.cc
--------------------------------------------------------------------------------
/transpiler/metadata_utils.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/metadata_utils.cc
--------------------------------------------------------------------------------
/transpiler/metadata_utils.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/metadata_utils.h
--------------------------------------------------------------------------------
/transpiler/metadata_utils_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/metadata_utils_test.cc
--------------------------------------------------------------------------------
/transpiler/netlist_utils.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/netlist_utils.cc
--------------------------------------------------------------------------------
/transpiler/netlist_utils.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/netlist_utils.h
--------------------------------------------------------------------------------
/transpiler/netlist_utils_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/netlist_utils_test.cc
--------------------------------------------------------------------------------
/transpiler/openfhe_runner.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/openfhe_runner.cc
--------------------------------------------------------------------------------
/transpiler/openfhe_runner.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/openfhe_runner.h
--------------------------------------------------------------------------------
/transpiler/openfhe_transpiler.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/openfhe_transpiler.cc
--------------------------------------------------------------------------------
/transpiler/openfhe_transpiler.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/openfhe_transpiler.h
--------------------------------------------------------------------------------
/transpiler/parsers.bzl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/parsers.bzl
--------------------------------------------------------------------------------
/transpiler/pipeline_enums.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/pipeline_enums.h
--------------------------------------------------------------------------------
/transpiler/rust/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/rust/BUILD
--------------------------------------------------------------------------------
/transpiler/rust/fhe_rs.bzl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/rust/fhe_rs.bzl
--------------------------------------------------------------------------------
/transpiler/rust/tfhe_rs_templates.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/rust/tfhe_rs_templates.h
--------------------------------------------------------------------------------
/transpiler/rust/transpiler_main.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/rust/transpiler_main.cc
--------------------------------------------------------------------------------
/transpiler/rust/yosys_transpiler.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/rust/yosys_transpiler.cc
--------------------------------------------------------------------------------
/transpiler/rust/yosys_transpiler.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/rust/yosys_transpiler.h
--------------------------------------------------------------------------------
/transpiler/rust/yosys_transpiler_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/rust/yosys_transpiler_test.cc
--------------------------------------------------------------------------------
/transpiler/struct_transpiler/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/struct_transpiler/BUILD
--------------------------------------------------------------------------------
/transpiler/struct_transpiler/convert_struct_to_encoded.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/struct_transpiler/convert_struct_to_encoded.cc
--------------------------------------------------------------------------------
/transpiler/struct_transpiler/convert_struct_to_encoded.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/struct_transpiler/convert_struct_to_encoded.h
--------------------------------------------------------------------------------
/transpiler/struct_transpiler/convert_struct_to_encoded_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/struct_transpiler/convert_struct_to_encoded_test.cc
--------------------------------------------------------------------------------
/transpiler/struct_transpiler/struct_transpiler_main.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/struct_transpiler/struct_transpiler_main.cc
--------------------------------------------------------------------------------
/transpiler/tensorflow/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tensorflow/README.md
--------------------------------------------------------------------------------
/transpiler/tensorflow/examples/hello_world/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tensorflow/examples/hello_world/BUILD
--------------------------------------------------------------------------------
/transpiler/tensorflow/examples/hello_world/hello_world.tosa.mlir:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tensorflow/examples/hello_world/hello_world.tosa.mlir
--------------------------------------------------------------------------------
/transpiler/tensorflow/examples/hello_world/hello_world_testbench.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tensorflow/examples/hello_world/hello_world_testbench.rs
--------------------------------------------------------------------------------
/transpiler/tensorflow/examples/micro_speech/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tensorflow/examples/micro_speech/Cargo.toml
--------------------------------------------------------------------------------
/transpiler/tensorflow/examples/micro_speech/micro_speech.tosa.mlir:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tensorflow/examples/micro_speech/micro_speech.tosa.mlir
--------------------------------------------------------------------------------
/transpiler/tensorflow/examples/micro_speech/src/main.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tensorflow/examples/micro_speech/src/main.rs
--------------------------------------------------------------------------------
/transpiler/tensorflow/examples/micro_speech/src/micro_speech/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tensorflow/examples/micro_speech/src/micro_speech/mod.rs
--------------------------------------------------------------------------------
/transpiler/tensorflow/examples/micro_speech/src/micro_speech/util.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tensorflow/examples/micro_speech/src/micro_speech/util.rs
--------------------------------------------------------------------------------
/transpiler/tests/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/BUILD
--------------------------------------------------------------------------------
/transpiler/tests/array.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/array.cc
--------------------------------------------------------------------------------
/transpiler/tests/array_of_scalars_cleartext_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/array_of_scalars_cleartext_test.cc
--------------------------------------------------------------------------------
/transpiler/tests/array_of_scalars_openfhe_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/array_of_scalars_openfhe_test.cc
--------------------------------------------------------------------------------
/transpiler/tests/array_of_scalars_tfhe_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/array_of_scalars_tfhe_test.cc
--------------------------------------------------------------------------------
/transpiler/tests/array_of_structs_cleartext_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/array_of_structs_cleartext_test.cc
--------------------------------------------------------------------------------
/transpiler/tests/array_of_structs_openfhe_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/array_of_structs_openfhe_test.cc
--------------------------------------------------------------------------------
/transpiler/tests/array_of_structs_tfhe_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/array_of_structs_tfhe_test.cc
--------------------------------------------------------------------------------
/transpiler/tests/char.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/char.cc
--------------------------------------------------------------------------------
/transpiler/tests/control_structure_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/control_structure_test.cc
--------------------------------------------------------------------------------
/transpiler/tests/for.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/for.cc
--------------------------------------------------------------------------------
/transpiler/tests/function.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/function.cc
--------------------------------------------------------------------------------
/transpiler/tests/if.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/if.cc
--------------------------------------------------------------------------------
/transpiler/tests/int.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/int.cc
--------------------------------------------------------------------------------
/transpiler/tests/issue_36.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/issue_36.cc
--------------------------------------------------------------------------------
/transpiler/tests/issue_36.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/issue_36.h
--------------------------------------------------------------------------------
/transpiler/tests/long.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/long.cc
--------------------------------------------------------------------------------
/transpiler/tests/namespaced_struct.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/namespaced_struct.cc
--------------------------------------------------------------------------------
/transpiler/tests/namespaced_struct.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/namespaced_struct.h
--------------------------------------------------------------------------------
/transpiler/tests/nested_for.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/nested_for.cc
--------------------------------------------------------------------------------
/transpiler/tests/openfhe_control_structure_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/openfhe_control_structure_test.cc
--------------------------------------------------------------------------------
/transpiler/tests/openfhe_test_util.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/openfhe_test_util.cc
--------------------------------------------------------------------------------
/transpiler/tests/openfhe_test_util.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/openfhe_test_util.h
--------------------------------------------------------------------------------
/transpiler/tests/openfhe_types_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/openfhe_types_test.cc
--------------------------------------------------------------------------------
/transpiler/tests/out_params.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/out_params.cc
--------------------------------------------------------------------------------
/transpiler/tests/out_params_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/out_params_test.cc
--------------------------------------------------------------------------------
/transpiler/tests/out_params_with_return.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/out_params_with_return.cc
--------------------------------------------------------------------------------
/transpiler/tests/single_out_param.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/single_out_param.cc
--------------------------------------------------------------------------------
/transpiler/tests/single_out_param_with_return.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/single_out_param_with_return.cc
--------------------------------------------------------------------------------
/transpiler/tests/struct.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/struct.cc
--------------------------------------------------------------------------------
/transpiler/tests/struct.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/struct.h
--------------------------------------------------------------------------------
/transpiler/tests/struct2.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/struct2.cc
--------------------------------------------------------------------------------
/transpiler/tests/switch.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/switch.cc
--------------------------------------------------------------------------------
/transpiler/tests/tfhe_test_util.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/tfhe_test_util.cc
--------------------------------------------------------------------------------
/transpiler/tests/tfhe_test_util.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/tfhe_test_util.h
--------------------------------------------------------------------------------
/transpiler/tests/types_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tests/types_test.cc
--------------------------------------------------------------------------------
/transpiler/tfhe_runner.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tfhe_runner.cc
--------------------------------------------------------------------------------
/transpiler/tfhe_runner.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tfhe_runner.h
--------------------------------------------------------------------------------
/transpiler/tfhe_runner_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tfhe_runner_test.cc
--------------------------------------------------------------------------------
/transpiler/tfhe_transpiler.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tfhe_transpiler.cc
--------------------------------------------------------------------------------
/transpiler/tfhe_transpiler.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tfhe_transpiler.h
--------------------------------------------------------------------------------
/transpiler/tfhe_transpiler_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tfhe_transpiler_test.cc
--------------------------------------------------------------------------------
/transpiler/tools/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tools/BUILD
--------------------------------------------------------------------------------
/transpiler/tools/netlist_analyzer_main.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/tools/netlist_analyzer_main.cc
--------------------------------------------------------------------------------
/transpiler/transpiler_main.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/transpiler_main.cc
--------------------------------------------------------------------------------
/transpiler/util/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/util/BUILD
--------------------------------------------------------------------------------
/transpiler/util/runfiles.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/util/runfiles.cc
--------------------------------------------------------------------------------
/transpiler/util/runfiles.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/util/runfiles.h
--------------------------------------------------------------------------------
/transpiler/util/string.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/util/string.cc
--------------------------------------------------------------------------------
/transpiler/util/string.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/util/string.h
--------------------------------------------------------------------------------
/transpiler/util/subprocess.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/util/subprocess.cc
--------------------------------------------------------------------------------
/transpiler/util/subprocess.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/util/subprocess.h
--------------------------------------------------------------------------------
/transpiler/util/temp_file.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/util/temp_file.cc
--------------------------------------------------------------------------------
/transpiler/util/temp_file.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/util/temp_file.h
--------------------------------------------------------------------------------
/transpiler/yosys/BUILD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys/BUILD
--------------------------------------------------------------------------------
/transpiler/yosys/lut_cells.liberty:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys/lut_cells.liberty
--------------------------------------------------------------------------------
/transpiler/yosys/map_lut_to_lutmux.v:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys/map_lut_to_lutmux.v
--------------------------------------------------------------------------------
/transpiler/yosys/map_lut_to_lutmux2.v:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys/map_lut_to_lutmux2.v
--------------------------------------------------------------------------------
/transpiler/yosys/map_lut_to_lutmux3.v:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys/map_lut_to_lutmux3.v
--------------------------------------------------------------------------------
/transpiler/yosys/map_lut_to_lutmux4.v:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys/map_lut_to_lutmux4.v
--------------------------------------------------------------------------------
/transpiler/yosys/map_lut_to_lutmux5.v:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys/map_lut_to_lutmux5.v
--------------------------------------------------------------------------------
/transpiler/yosys/map_lut_to_lutmux6.v:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys/map_lut_to_lutmux6.v
--------------------------------------------------------------------------------
/transpiler/yosys/openfhe_cells.liberty:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys/openfhe_cells.liberty
--------------------------------------------------------------------------------
/transpiler/yosys/tfhe-rs_cells.liberty:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys/tfhe-rs_cells.liberty
--------------------------------------------------------------------------------
/transpiler/yosys/tfhe_cells.liberty:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys/tfhe_cells.liberty
--------------------------------------------------------------------------------
/transpiler/yosys_cleartext_runner.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys_cleartext_runner.cc
--------------------------------------------------------------------------------
/transpiler/yosys_cleartext_runner.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys_cleartext_runner.h
--------------------------------------------------------------------------------
/transpiler/yosys_cleartext_runner_test.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys_cleartext_runner_test.cc
--------------------------------------------------------------------------------
/transpiler/yosys_openfhe_runner.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys_openfhe_runner.cc
--------------------------------------------------------------------------------
/transpiler/yosys_openfhe_runner.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys_openfhe_runner.h
--------------------------------------------------------------------------------
/transpiler/yosys_tfhe_runner.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys_tfhe_runner.cc
--------------------------------------------------------------------------------
/transpiler/yosys_tfhe_runner.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys_tfhe_runner.h
--------------------------------------------------------------------------------
/transpiler/yosys_transpiler.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys_transpiler.cc
--------------------------------------------------------------------------------
/transpiler/yosys_transpiler.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/fully-homomorphic-encryption/HEAD/transpiler/yosys_transpiler.h
--------------------------------------------------------------------------------