|
@@ -28,17 +28,23 @@
|
|
|
#include <pybind11/pybind11.h>
|
|
|
#include <pybind11/stl.h>
|
|
|
#include "openfhe.h"
|
|
|
-#include "scheme/bfvrns/bfvrns-ser.h"
|
|
|
-#include "scheme/bgvrns/bgvrns-ser.h"
|
|
|
-#include "cryptocontext-ser.h"
|
|
|
#include "bindings.h"
|
|
|
+#include "utils/exception.h"
|
|
|
+
|
|
|
#include "serialization.h"
|
|
|
+#include "metadata-ser.h"
|
|
|
+#include "ciphertext-ser.h"
|
|
|
+#include "cryptocontext-ser.h"
|
|
|
+#include "key/key-ser.h"
|
|
|
+#include "scheme/bfvrns/bfvrns-ser.h"
|
|
|
+#include "scheme/bgvrns/bgvrns-ser.h"
|
|
|
+#include "scheme/ckksrns/ckksrns-ser.h"
|
|
|
|
|
|
using namespace lbcrypto;
|
|
|
namespace py = pybind11;
|
|
|
|
|
|
template <typename ST>
|
|
|
-bool SerializeEvalMultKeyWrapper(const std::string& filename, const ST& sertype, std::string id)
|
|
|
+bool SerializeEvalMultKeyWrapper(const std::string &filename, const ST &sertype, std::string id)
|
|
|
{
|
|
|
std::ofstream outfile(filename, std::ios::out | std::ios::binary);
|
|
|
bool res;
|
|
@@ -47,27 +53,76 @@ bool SerializeEvalMultKeyWrapper(const std::string& filename, const ST& sertype,
|
|
|
return res;
|
|
|
}
|
|
|
|
|
|
+template <typename ST>
|
|
|
+bool SerializeEvalAutomorphismKeyWrapper(const std::string& filename, const ST& sertype, std::string id)
|
|
|
+{
|
|
|
+ std::ofstream outfile(filename, std::ios::out | std::ios::binary);
|
|
|
+ bool res;
|
|
|
+ res = CryptoContextImpl<DCRTPoly>::SerializeEvalAutomorphismKey<ST>(outfile, sertype, id);
|
|
|
+ outfile.close();
|
|
|
+ return res;
|
|
|
+}
|
|
|
+
|
|
|
+template <typename ST>
|
|
|
+bool DeserializeEvalMultKeyWrapper(const std::string &filename, const ST &sertype)
|
|
|
+{
|
|
|
+ std::ifstream emkeys(filename, std::ios::in | std::ios::binary);
|
|
|
+ if (!emkeys.is_open())
|
|
|
+ {
|
|
|
+ std::cerr << "I cannot read serialization from " << filename << std::endl;
|
|
|
+ }
|
|
|
+ bool res;
|
|
|
+ res = CryptoContextImpl<DCRTPoly>::DeserializeEvalMultKey<ST>(emkeys, sertype);
|
|
|
+ return res; }
|
|
|
+
|
|
|
+template <typename T, typename ST>
|
|
|
+std::tuple<T, bool> DeserializeFromFileWrapper(const std::string& filename, const ST& sertype) {
|
|
|
+ T newob;
|
|
|
+ bool result = Serial::DeserializeFromFile<T>(filename, newob, sertype);
|
|
|
+ return std::make_tuple(newob, result);
|
|
|
+}
|
|
|
+template <typename ST>
|
|
|
+std::tuple<CryptoContext<DCRTPoly>, bool> DeserializeCCWrapper(const std::string& filename, const ST& sertype) {
|
|
|
+ CryptoContext<DCRTPoly> newob;
|
|
|
+ bool result = Serial::DeserializeFromFile<DCRTPoly>(filename, newob, sertype);
|
|
|
+ return std::make_tuple(newob, result);
|
|
|
+}
|
|
|
+
|
|
|
void bind_serialization(pybind11::module &m) {
|
|
|
|
|
|
- m.def("SerializeToFile", static_cast<bool (*)(const std::string&, const CryptoContext<DCRTPoly>&, const SerType::SERJSON&)>(&Serial::SerializeToFile<DCRTPoly>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
- m.def("DeserializeFromFile", static_cast<bool (*)(const std::string&, CryptoContext<DCRTPoly>& ,const SerType::SERJSON&)>(&Serial::DeserializeFromFile<DCRTPoly>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
- m.def("SerializeToFile", static_cast<bool (*)(const std::string&, const PublicKey<DCRTPoly>&, const SerType::SERJSON&)>(&Serial::SerializeToFile<PublicKey<DCRTPoly>>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
- m.def("DeserializeFromFile", static_cast<bool (*)(const std::string&, PublicKey<DCRTPoly>& ,const SerType::SERJSON&)>(&Serial::DeserializeFromFile<PublicKey<DCRTPoly>>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
- m.def("SerializeToFile", static_cast<bool (*)(const std::string&, const PrivateKey<DCRTPoly>&, const SerType::SERJSON&)>(&Serial::SerializeToFile<PrivateKey<DCRTPoly>>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
- m.def("DeserializeFromFile", static_cast<bool (*)(const std::string&, PrivateKey<DCRTPoly>& ,const SerType::SERJSON&)>(&Serial::DeserializeFromFile<PrivateKey<DCRTPoly>>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
- m.def("SerializeToFile", static_cast<bool (*)(const std::string&, const Ciphertext<DCRTPoly>&, const SerType::SERJSON&)>(&Serial::SerializeToFile<Ciphertext<DCRTPoly>>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
- m.def("DeserializeFromFile", static_cast<bool (*)(const std::string&, Ciphertext<DCRTPoly>& ,const SerType::SERJSON&)>(&Serial::DeserializeFromFile<Ciphertext<DCRTPoly>>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
+ m.def("SerializeToFile", static_cast<bool (*)(const std::string &, const CryptoContext<DCRTPoly> &, const SerType::SERJSON &)>(&Serial::SerializeToFile<DCRTPoly>),
|
|
|
+ py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
+ m.def("DeserializeCryptoContext", static_cast<std::tuple<CryptoContext<DCRTPoly>, bool> (*)(const std::string &, const SerType::SERJSON &)>(&DeserializeCCWrapper<SerType::SERJSON>),
|
|
|
+ py::arg("filename"), py::arg("sertype"));
|
|
|
+ m.def("SerializeToFile", static_cast<bool (*)(const std::string &, const PublicKey<DCRTPoly> &, const SerType::SERJSON &)>(&Serial::SerializeToFile<PublicKey<DCRTPoly>>),
|
|
|
+ py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
+ m.def("DeserializePublicKey", static_cast<std::tuple<PublicKey<DCRTPoly>,bool> (*)(const std::string&, const SerType::SERJSON&)>(&DeserializeFromFileWrapper<PublicKey<DCRTPoly>, SerType::SERJSON>),
|
|
|
+ py::arg("filename"), py::arg("sertype"));
|
|
|
+ m.def("SerializeToFile", static_cast<bool (*)(const std::string&, const PrivateKey<DCRTPoly>&, const SerType::SERJSON&)>(&Serial::SerializeToFile<PrivateKey<DCRTPoly>>),
|
|
|
+ py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
+ m.def("DeserializePrivateKey", static_cast<std::tuple<PrivateKey<DCRTPoly>,bool> (*)(const std::string&, const SerType::SERJSON&)>(&DeserializeFromFileWrapper<PrivateKey<DCRTPoly>, SerType::SERJSON>),
|
|
|
+ py::arg("filename"), py::arg("sertype"));
|
|
|
+ m.def("SerializeToFile", static_cast<bool (*)(const std::string&, const Ciphertext<DCRTPoly>&, const SerType::SERJSON&)>(&Serial::SerializeToFile<Ciphertext<DCRTPoly>>),
|
|
|
+ py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
+ m.def("DeserializeCiphertext", static_cast<std::tuple<Ciphertext<DCRTPoly>,bool> (*)(const std::string&, const SerType::SERJSON&)>(&DeserializeFromFileWrapper<Ciphertext<DCRTPoly>, SerType::SERJSON>),
|
|
|
+ py::arg("filename"), py::arg("sertype"));
|
|
|
|
|
|
- m.def("SerializeToFile", static_cast<bool (*)(const std::string&, const CryptoContext<DCRTPoly>&, const SerType::SERBINARY&)>(&Serial::SerializeToFile<DCRTPoly>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
- m.def("DeserializeFromFile", static_cast<bool (*)(const std::string&, CryptoContext<DCRTPoly>& ,const SerType::SERBINARY&)>(&Serial::DeserializeFromFile<DCRTPoly>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
- m.def("SerializeToFile", static_cast<bool (*)(const std::string&, const PublicKey<DCRTPoly>&, const SerType::SERBINARY&)>(&Serial::SerializeToFile<PublicKey<DCRTPoly>>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
- m.def("DeserializeFromFile", static_cast<bool (*)(const std::string&, PublicKey<DCRTPoly>& ,const SerType::SERBINARY&)>(&Serial::DeserializeFromFile<PublicKey<DCRTPoly>>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
- m.def("SerializeToFile", static_cast<bool (*)(const std::string&, const PrivateKey<DCRTPoly>&, const SerType::SERBINARY&)>(&Serial::SerializeToFile<PrivateKey<DCRTPoly>>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
- m.def("DeserializeFromFile", static_cast<bool (*)(const std::string&, PrivateKey<DCRTPoly>& ,const SerType::SERBINARY&)>(&Serial::DeserializeFromFile<PrivateKey<DCRTPoly>>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
- m.def("SerializeToFile", static_cast<bool (*)(const std::string&, const Ciphertext<DCRTPoly>&, const SerType::SERBINARY&)>(&Serial::SerializeToFile<Ciphertext<DCRTPoly>>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
- m.def("DeserializeFromFile", static_cast<bool (*)(const std::string&, Ciphertext<DCRTPoly>& ,const SerType::SERBINARY&)>(&Serial::DeserializeFromFile<Ciphertext<DCRTPoly>>), py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
-
|
|
|
+ m.def("SerializeToFile", static_cast<bool (*)(const std::string&,const CryptoContext<DCRTPoly>&, const SerType::SERBINARY&)>(&Serial::SerializeToFile<DCRTPoly>),
|
|
|
+ py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
+ m.def("DeserializeCryptoContext", static_cast<std::tuple<CryptoContext<DCRTPoly>,bool> (*)(const std::string&, const SerType::SERBINARY&)>(&DeserializeCCWrapper<SerType::SERBINARY>),
|
|
|
+ py::arg("filename"), py::arg("sertype"));
|
|
|
+ m.def("SerializeToFile", static_cast<bool (*)(const std::string&, const PublicKey<DCRTPoly>&, const SerType::SERBINARY&)>(&Serial::SerializeToFile<PublicKey<DCRTPoly>>),
|
|
|
+ py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
+ m.def("DeserializePublicKey", static_cast<std::tuple<PublicKey<DCRTPoly>,bool> (*)(const std::string&, const SerType::SERBINARY&)>(&DeserializeFromFileWrapper<PublicKey<DCRTPoly>, SerType::SERBINARY>),
|
|
|
+ py::arg("filename"), py::arg("sertype"));
|
|
|
+ m.def("SerializeToFile", static_cast<bool (*)(const std::string&, const PrivateKey<DCRTPoly>&, const SerType::SERBINARY&)>(&Serial::SerializeToFile<PrivateKey<DCRTPoly>>),
|
|
|
+ py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
+ m.def("DeserializePrivateKey", static_cast<std::tuple<PrivateKey<DCRTPoly>,bool> (*)(const std::string&, const SerType::SERBINARY&)>(&DeserializeFromFileWrapper<PrivateKey<DCRTPoly>, SerType::SERBINARY>),
|
|
|
+ py::arg("filename"), py::arg("sertype"));
|
|
|
+ m.def("SerializeToFile", static_cast<bool (*)(const std::string&, const Ciphertext<DCRTPoly>&, const SerType::SERBINARY&)>(&Serial::SerializeToFile<Ciphertext<DCRTPoly>>),
|
|
|
+ py::arg("filename"), py::arg("obj"), py::arg("sertype"));
|
|
|
+ m.def("DeserializeCiphertext", static_cast<std::tuple<Ciphertext<DCRTPoly>,bool> (*)(const std::string&, const SerType::SERBINARY&)>(&DeserializeFromFileWrapper<Ciphertext<DCRTPoly>, SerType::SERBINARY>),
|
|
|
+ py::arg("filename"), py::arg("sertype"));
|
|
|
|
|
|
}
|
|
|
|
|
|
-
|