Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sebastinas/bfe-bf
Implementation of Bloom Filter Encryption using the Boneh-Franklin IBE
https://github.com/sebastinas/bfe-bf
forward-secrecy kex
Last synced: about 1 month ago
JSON representation
Implementation of Bloom Filter Encryption using the Boneh-Franklin IBE
- Host: GitHub
- URL: https://github.com/sebastinas/bfe-bf
- Owner: sebastinas
- License: cc0-1.0
- Created: 2020-06-22T14:31:28.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-09-18T22:20:39.000Z (over 1 year ago)
- Last Synced: 2024-05-01T21:41:02.818Z (8 months ago)
- Topics: forward-secrecy, kex
- Language: C
- Homepage:
- Size: 245 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Bloom Filter Encryption from Boneh-Franklin IBE
===============================================This library implements bloom filter encryption (BFE) based on the paper [*Bloom Filter Encryption
and Applications to Efficient Forward-Secret 0-RTT Key Exchange*](https://eprint.iacr.org/2018/199)
by David Derler, Tibor Jager, Daniel Slamanig, and Christoph Striecks. It implements IND-CCA2-secure
BFE based on the Boneh-Franklin IBE and TB-BFE based on the Boneh-Boyen-Go HIBE.Dependencies
------------The BFE library requires the following dependencies:
* [relic](https://github.com/relic-toolkit/relic)
* [libsodium](https://libsodium.gitbook.io/doc/)
* [doxygen](http://www.doxygen.nl/index.html) (optional, for documentation)
* [cgreen](https://github.com/cgreen-devs/cgreen) (optional, for tests)
* [cxxopts](https://github.com/jarro2783/cxxopts) (optional, for benchmarks)Building
--------First configure the build with `cmake` and then run `make`:
```sh
mkdir build
cd build
cmake ..
make
```License
-------The code is licensed under the CC0 license and was written by Sebastian Ramacher (AIT Austrian
Institute of Technology) and Erkan Tairi while at AIT. This work has been partially funded by the
"ICT of the Future" Program of the FFG and the BMVIT as part of [IoT4CPS](https://iot4cps.at) and by
the EU projects [SECREDAS](https://secredas-project.eu/), [COMP4DRONES](https://www.comp4drones.eu),
[LABYRINTH](https://labyrinth2020.eu/). This project has received funding from the European Union’s
Horizon 2020 research and innovation programme under grant agreement No 783119, 826610, and 861696.The SHAKE implementation is taken from [eXtended Keccak Code Package](https://github.com/XKCP/XKCP)
which is also available under the CC0 license.