homenc / HElib

HElib is an open-source software library that implements homomorphic encryption. It supports the BGV scheme with bootstrapping and the Approximate Number CKKS scheme. HElib also includes optimizations for efficient homomorphic evaluation, focusing on effective use of ciphertext packing techniques and on the Gentry-Halevi-Smart optimizations.
https://homenc.github.io/HElib
Other
3.11k stars 760 forks source link

Option to disable helib.log #411

Closed ankane closed 2 years ago

ankane commented 3 years ago

Hi, thanks for this really neat library! I recently used it to create a key-value store based on one of the examples.

It'd be nice if there was an option to disable the helib.log file. Currently, it's created when any program that includes HElib is run, even if HElib isn't used and no logging occurs.

#include <helib/helib.h>

int main() {
  return 0;
}