SEAL-Python
SEAL-Python copied to clipboard
Microsoft SEAL 4.X For Python
**Type** ValueError **Descripe** ``` I = np.array([1, 0, 0, 0, 1, 0, 0, 0, 1]) plain_I = ckks_encoder.encode(I, scale) E_I = encryptor.encrypt(plain_I) A = np.array([1, 0, 0, 0, 1, 0,...
When encoding plurals, it will suggest that the imaginary part is rounded off.
The latest release of SEAL 4.0.0 have some updates on its coeff modulus create apis and the python wrapper no longer works with it. ```python .def_static("Create", &CoeffModulus::Create); ``` error: template...
**Type** I have a question about the result after two-time encryption **Descripe** Hi, I have a question about the result after the encryption for ciphertext two times using CKKS scheme....
Hello, I was trying to use the IntegerEncoder in the SEAL-Python library, but I encountered a NameError. Is IntegerEncoder no longer available for use in the current version of the...
I was able to successfully build this repo following the instructions in the readme and i was able to run the example codes in the example folders. my question is...
I want to use any on of the scheme and get to know about the multiplication depth for the parameters that are ( n = 8192, q = 2^383-2^33+1, t1...
**Descripe** I wanted to transfer the ciphertext, but the `seal.Ciphertext` was not serialized and could not transfer. What do I need to do to transmit ciphertext?
**Type** I wanted to test out CKKS and so I rewrote 5_CKKS_Basics in python This is my code, and `#DEBUG` marks where I first can trace where the code is...