16 #include <type_traits>
17 #include <NTL/xdouble.h>
18 #include <NTL/vec_long.h>
24 #define BINIO_EYE_SIZE 4
27 #define BINIO_EYE_CONTEXTBASE_BEGIN "|BS["
28 #define BINIO_EYE_CONTEXTBASE_END "]BS|"
29 #define BINIO_EYE_CONTEXT_BEGIN "|CN["
30 #define BINIO_EYE_CONTEXT_END "]CN|"
31 #define BINIO_EYE_CTXT_BEGIN "|CX["
32 #define BINIO_EYE_CTXT_END "]CX|"
33 #define BINIO_EYE_PK_BEGIN "|PK["
34 #define BINIO_EYE_PK_END "]PK|"
35 #define BINIO_EYE_SK_BEGIN "|SK["
36 #define BINIO_EYE_SK_END "]SK|"
37 #define BINIO_EYE_SKM_BEGIN "|KM["
38 #define BINIO_EYE_SKM_END "]KM|"
57 const NTL::vec_long& vl,
58 long intSize = BINIO_64BIT);
80 for (
const T& n : v) {
105 template <
typename T>
108 read_raw_vector<T>(str, v, T());
122 template <
typename T>
131 n.read(str, context);
136 #endif // ifndef HELIB_BINIO_H
int readEyeCatcher(std::istream &str, const char *expect)
Definition: binio.cpp:21
void writeEyeCatcher(std::ostream &str, const char *eye)
Definition: binio.cpp:28
void write_raw_double(std::ostream &str, const double d)
Definition: binio.cpp:148
void read_raw_vector(std::istream &str, std::vector< T > &v, T &init)
Definition: binio.h:95
void write_raw_ZZ(std::ostream &str, const NTL::ZZ &zz)
Definition: binio.cpp:180
void write_raw_vector(std::ostream &str, const std::vector< T > &v)
Definition: binio.h:76
void write_ntl_vec_long(std::ostream &str, const NTL::vec_long &vl, long intSize=BINIO_64BIT)
Definition: binio.cpp:105
int read_raw_int32(std::istream &str)
Definition: binio.cpp:56
double read_raw_double(std::istream &str)
Definition: binio.cpp:157
void read_raw_vector< double >(std::istream &str, std::vector< double > &v)
Definition: binio.cpp:231
void write_raw_vector< double >(std::ostream &str, const std::vector< double > &v)
Definition: binio.cpp:242
void read_raw_ZZ(std::istream &str, NTL::ZZ &zz)
Definition: binio.cpp:193
void read_ntl_vec_long(std::istream &str, NTL::vec_long &vl)
Definition: binio.cpp:125
NTL::xdouble read_raw_xdouble(std::istream &str)
Definition: binio.cpp:173
Definition: apiAttributes.h:21
long read_raw_int(std::istream &str)
Definition: binio.cpp:36
void read_raw_vector< long >(std::istream &str, std::vector< long > &v)
Definition: binio.cpp:210
void write_raw_int(std::ostream &str, long num)
Definition: binio.cpp:77
Maintaining the parameters.
Definition: Context.h:121
void write_raw_int32(std::ostream &str, int num)
Definition: binio.cpp:91
void write_raw_vector< long >(std::ostream &str, const std::vector< long > &v)
Definition: binio.cpp:221
void write_raw_xdouble(std::ostream &str, const NTL::xdouble xd)
Definition: binio.cpp:165