A fork of SealPIR (v2.1) with patches for PIROS microbenchmarking

Sebastian Angel dfdc483138 propagating option in main пре 2 година
.gitignore 609b4f20b7 Add CMake generated files to .gitignore. пре 4 година
CMakeLists.txt 202c797920 Added a test for expansion and some e2e tests with different parameters. пре 3 година
LICENSE 76e1a93d3c Initial commit пре 6 година
README.md 657857144c a few touches пре 2 година
expand_test.cpp 657857144c a few touches пре 2 година
main.cpp dfdc483138 propagating option in main пре 2 година
pir.cpp 6f2b909103 adding option for symmetric пре 2 година
pir.hpp 657857144c a few touches пре 2 година
pir_client.cpp 202c797920 Added a test for expansion and some e2e tests with different parameters. пре 3 година
pir_client.hpp 202c797920 Added a test for expansion and some e2e tests with different parameters. пре 3 година
pir_server.cpp 657857144c a few touches пре 2 година
pir_server.hpp cf6d3c1682 Now all database elements are encoded into plaintexts using the batch encoder. пре 3 година
query_test.cpp 202c797920 Added a test for expansion and some e2e tests with different parameters. пре 3 година

README.md

SealPIR: A computational PIR library that achieves low communication costs and high performance.

SealPIR is a research library and should not be used in production systems. SealPIR allows a client to download an element from a database stored by a server without revealing which element was downloaded. SealPIR was introduced at the Symposium on Security and Privacy (Oakland) in 2018. You can find a copy of the paper here.

Compiling SEAL

SealPIR depends on Microsoft SEAL version 3.6.5. Install SEAL before compiling SealPIR.

Compiling SealPIR

Once Microsoft SEAL 3.6.5 is installed, to build SealPIR simply run:

cmake .
make

This should produce a binary file bin/sealpir.

Using SealPIR

Take a look at the example in main.cpp for how to use SealPIR. Note: the parameter "d" stands for recursion levels, and for the current configuration, the server-to-client reply has size (pow(10, d-1) * 32) KB. Therefore we recommend using d <= 3.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.