12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef BINFHE_BINDINGS_H
- #define BINFHE_BINDINGS_H
- #include <pybind11/pybind11.h>
- void bind_binfhe_enums(pybind11::module &m);
- void bind_binfhe_context(pybind11::module &m);
- void bind_binfhe_keys(pybind11::module &m);
- void bind_binfhe_ciphertext(pybind11::module &m);
- #endif
|