19 #include <helib/helib.h>
21 std::string stripExtension(
const std::string& s)
23 std::size_t dotPos = s.find_last_of(
".");
24 return (dotPos == std::string::npos) ? s : s.substr(0, dotPos);
27 std::string readline(std::istream& is)
44 template <
typename T1,
typename T2>
45 using uniq_pair = std::pair<std::unique_ptr<T1>, std::unique_ptr<T2>>;
47 template <
typename KEY>
48 uniq_pair<helib::Context, KEY> loadContextAndKey(
const std::string& keyFilePath)
50 std::ifstream keyFile(keyFilePath, std::ios::binary);
51 if (!keyFile.is_open())
52 throw std::runtime_error(
"Cannot open Public Key file '" + keyFilePath +
55 unsigned long m, p, r;
56 std::vector<long> gens, ords;
59 std::unique_ptr<helib::Context> contextp =
60 std::make_unique<helib::Context>(m, p, r, gens, ords);
63 std::unique_ptr<KEY> keyp = std::make_unique<KEY>(*contextp);
64 readKeyBinary(keyFile, *keyp);
66 return {std::move(contextp), std::move(keyp)};
69 inline long estimateCtxtSize(
const helib::Context& context,
long offset)
123 part_size += dcrt_size;
128 size += 2 * part_size;
134 return size + offset;