hui09-m

Results 4 comments of hui09-m

Well, I'll show you the changes. For ckks serialization example, I add another number, so I add codes in line 287、290 and 313 like the following picture Add codes in...

> * It seems you have misunderstood what `sizeof(EncryptionParameters)` means. > * Instead using `std::stringstream` to de/serialize > ``` > std::stringstream ss; > parms.save(ss); > std::string parms_to_send = ss.str(); >...

> The following code work fine for me > > ```c++ > void test() { > seal::EncryptionParameters parms(seal::scheme_type::ckks); > size_t N = 8192; > std::vector modulus_bits = {51, 55, 55};...

> There is no difference between `copy_n` and `send/recv` pair. To make sure you are using the right length (but not just a `MaxBufSize`) and make sure your have initialized...