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

Is this attack solved ? ![image](https://user-images.githubusercontent.com/60758685/198838952-37bb5632-8c5a-4f46-bc90-790f750a71b6.png) https://arxiv.org/pdf/1906.07127.pdf V

Hello, In SEAL the function invariant_noise_budget is supported for both BFV and BVG, but for BGV I just want to know if an analogous of invariant_noise_budget is used ? also...

Hello, I am writing a code to calculate the Euclidean distance between two vectors, where both of them are encrypted. and I have yet to master SEAL, so I have...

Hi, I am using Xamarin to run an app and use seal library. When I try to implement the solution it keeps returning the following error: **System.DllNotFoundException:** 'sealc assembly: type:...

In [/native/src/seal/dynarray.h](https://github.com/microsoft/SEAL/blob/main/native/src/seal/dynarray.h), ``` inline void reserve(std::size_t capacity) { std::size_t copy_size = std::min(capacity, size_); // Create new allocation and copy over value auto new_data(util::allocate(capacity, pool_)); std::copy_n(cbegin(), copy_size, new_data.get()); std::swap(data_, new_data); //...

Is it possible to implement Logistic Regression with BFV scheme? I can't find any public code that use this scheme. Please help me 😢

Hi everyone, I have a simple doubt. While running performance.cpp to get the latency results, why doesnot the relinearization happen for N=1024 and 2048. The variable context.use_keyswitching() is zero whenever...

Can you tell me how to set SEAL_THROW_ON_TRANSPARENT_CIPHERTEXT=OFF for vcpkg installation

From analyzing the code for generating key-switching, it appears to follow the structure \( P \cdot s^2 - as + e \). However, based on the SEAL issue discussions, it...