SEAL
SEAL copied to clipboard
Microsoft SEAL is an easy-to-use and powerful homomorphic encryption library.
Description: I installed Microsoft SEAL using vcpkg on Windows, following the instructions from the official GitHub repository. I added the path of the header file seal_x64-windows\include\SEAL-4.1\seal in additional include directories...
Hello, I recently encountered a problem while developing communication programs between C # servers and clients using the nuget package provided by SEAL. My idea is that the client encrypts...
I fully understand the rationale of limiting the functionalities to the native operations of the scheme for easier maintenance, and that operations like comparison and division would need approximations via...
Hi there, I am trying to understand the HE and its operation through debugging the code. I built the SEAL in debug mode successfully which was built up in /Debug...
I set breakpoints in _bgv_basics.cpp, and execute these commands in console window: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug, cmake --build build, and in VS code, I click "run-->start debugging" ,...
Hi, I tried to install SEAL version 3.6 following [EVA's guidelines](https://github.com/microsoft/EVA/#readme): ``` git clone -b v3.6.4 https://github.com/microsoft/SEAL.git cd SEAL cmake -DSEAL_THROW_ON_TRANSPARENT_CIPHERTEXT=OFF . make -j sudo make install ``` and encountered...
I try to find the minimum support value for CKKS. Interestingly, for N=2^15, coeffModulus = [17,20] can work successfully, but [18,20],[19,20] would raise error of ' failed to find enough...
I am writing a program using seal library, I installed the library and used cmakeliststxt to find the packege. Now I want to make the program a dll, but failed....
I am trying to run a C# Program (an api created with dotnet) inside an ubuntu20.04 server using the Seal libraries with the nuget Package previously installed from visual studio....
When compiling with -Wextra-semi warnings get called out in this codebase for extra semicolons. This commit removes the extra semicolons.