Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/osu-crypto/libPSI
A repository for private set intersection.
https://github.com/osu-crypto/libPSI
Last synced: 2 months ago
JSON representation
A repository for private set intersection.
- Host: GitHub
- URL: https://github.com/osu-crypto/libPSI
- Owner: osu-crypto
- License: other
- Created: 2016-06-08T23:28:42.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T16:08:38.000Z (about 2 years ago)
- Last Synced: 2024-08-01T22:44:31.219Z (5 months ago)
- Language: C++
- Homepage:
- Size: 16.9 MB
- Stars: 167
- Watchers: 6
- Forks: 47
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# libPSI
A repository for private set intersection. Most protocols were written just for benchmarking them while (RR17,KKRT,Mea86=ECDH) can be run from the command line and take a file as input. Run the program for details.## VolePSI
Also consider using https://github.com/Visa-Research/volepsi/ for improved performance.## Introduction
Protocols:* Malicious Secure [RR17](https://eprint.iacr.org/2017/769) based on simple hashing and OTs (fastest)
* Malicious Secure [RR16](https://eprint.iacr.org/2016/746) based on Bloom filters and OTs
* Malicious Secure [DKT10](https://eprint.iacr.org/2010/469) based on public key crypto (ECC)
* Semi-Honest Secure [KKRT16](https://eprint.iacr.org/2016/799) based on cuckoo hashing and OTs (fastest)
* Semi-Honest Secure [Mea86](http://ieeexplore.ieee.org/document/6234849/) base on public key crypto (ECC)
* Semi-Honest Secure [DRRT18](https://eprint.iacr.org/2018/579.pdf) based on cuckoo hashing, PIR and OTs (fastest unbalanced)
## InstallOur library is cross platform and has been tested on both Windows and Linux. The library should work on Mac but it has not been tested. There are several library dependencies including [libOTe](https://github.com/osu-crypto/libOte).
```
git clone https://github.com/osu-crypto/libPSI.git
cd libPSI
python build.py
```Unit tests can be run by executing the program.
```
/out/build//frontend/frontend.exe -u
```
Other options can be seen by executing with no arguments.
## HelpContact Peter Rindal `[email protected]` for any assistance on building or running the library.