https://github.com/edgelesssys/libedgeless
https://github.com/edgelesssys/libedgeless
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/edgelesssys/libedgeless
- Owner: edgelesssys
- Created: 2020-06-21T14:15:06.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-10-15T15:00:08.000Z (over 4 years ago)
- Last Synced: 2025-06-18T11:53:30.367Z (about 1 year ago)
- Language: C++
- Size: 339 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lib Edgeless
This C++ library contains utility modules that are meant to be re-used in different projects. Currently, the following modules are available:
* **crypto**: a small wrapper around *OpenSSL EVP*, which we use in *RocksDB* for AES-GCM encryption and key derivation.
## Build
```bash
sudo apt install clang-tidy-10
mkdir build
cd build
cmake ..
make
ctest
```