SEAL-Python icon indicating copy to clipboard operation
SEAL-Python copied to clipboard

Microsoft SEAL 4.X For Python

Results 19 SEAL-Python issues
Sort by recently updated
recently updated
newest added

**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,...

question

When encoding plurals, it will suggest that the imaginary part is rounded off.

bug

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...

bug

**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....

question

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...

question

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...

question

How can I obtain seal's documents

question

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...

question

**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?

question

**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...

question