SEAL icon indicating copy to clipboard operation
SEAL copied to clipboard

Microsoft SEAL is an easy-to-use and powerful homomorphic encryption library.

Results 153 SEAL issues
Sort by recently updated
recently updated
newest added

Does SEAL implement the hybrid key switching approach from [here](https://eprint.iacr.org/2019/688.pdf)? I wasn't able to find anything concrete after looking through the code for a bit.

I have same wonder with the post (https://github.com/microsoft/SEAL/issues/402#issue-1022757442). Let's suppose that CKKS use the primes for crt with {60, 40, 40, 60} bitwidth. Let's call them q0, q1, q2, q3...

My g++ version is 7.5.0, and I run "cmake -S . -B build" successfully, but when running "cmake --build build", error occurs like this : **SEAL-4.0.0/native/src/seal/util/rns.cpp:1239:14: required from here SEAL-4.0.0/native/src/seal/util/rns.cpp:1232:54:...

Is there an implementation of Multi-key FHE based on BGV in the SEAL library? The author of "Batched Multi-hop Multi-key FHE from Ring-LWE with Compact Ciphertext Extension" told me that...

May I confirm that SEAL supports CKKS bootstrapping? ![image](https://user-images.githubusercontent.com/754293/223952731-32edb743-529c-4f5a-a292-3c85d9fe25bd.png) BR

I am a novice learning seal. I read related questions and learned that I can use SEALContext context(parms, true, sec_level_type::none); to skip the security check, but I got an error...

Can SEALContext object transmit by socket? I want to use socket to imitate the comminucations between server and clients. Then I write code to acchieve the fundation. But some errors...

According to the seal manual (https://www.microsoft.com/en-us/research/uploads/prod/2017/11/sealmanual-2-3-1.pdf), before the relinearization, ``` c0 = [t/q (ct0[0]ct1[0])]_q c1 = [t/q(ct0[0]ct1[1]1+ct0[1]ct1[0])]_q c2 = [t/q(ct0[1]ct1[1])]_q ``` where the multiplications like `ct0[0]ct1[0] `or `ct0[0]ct1[1] `etc, are...

I builded SEAL/native/examples by cmake and executed 5_ckks_basics.cpp In this example, I wanna check the parameters for encryption like q0, q1, .... How could I check them and I wonder...

Hi, I am trying to debug one demo I created with xamarin in visual studio. It used to work fine, but from one day to the other, it starts failing....