SEAL
SEAL copied to clipboard
Microsoft SEAL is an easy-to-use and powerful homomorphic encryption library.
Is it possible to create an asymmetric secret key from a given seed and then re-use this seed to create the same secret key?
To expand the reach of SEAL to new platforms it would be worthwhile implementing bindings for MacOS and iOS similar to the ones for dotnet. I propose creating an Objective-C++...
I can use SEAL with **.NET 6.0** by NuGet. But, I can't use SEAL with **.NET Framework 4.7.2** by NuGet or local build. The moment I execute the following line,...
Compile error when build Tenseal 0.3.0. Problem: TenSEAL-0.3.0/build/temp.linux-aarch64-cpython-38/_deps/com_microsoft_seal-src/native/src/seal/util/locks.h:10:1: note: std::unique_lock’ is defined in header ‘’; did you forget to ‘#include ’?
I build the SEAL 4.0.0 on ubuntu and received an error like the below picture. I don't kown why? 
Hi, i want to ask how to initiate two of the same context by the same encryption parms? Two context to initiate two KeyGenerator separately to generate the matched secret_key...
I am using the following SealContext: ``` seal::EncryptionParameters params(seal::scheme_type::ckks); size_t poly_modulus_degree = 32768; params.set_poly_modulus_degree(poly_modulus_degree); std::vector coefs{ 40, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,...
Hi, I am working on a client-server application using SEAL and sockets. In the application, I generate SEAL objects on the server and transport these objects to the client over...
Hi! I'm new to the library, so I'm trying implementing dot product between two vector (one ciphertext with one plaintext) using BFV scheme. After doing multiply_plain_inplace, how can I sum...
I am using SEAL to implement Multiparty HE scheme described [in this paper](https://eprint.iacr.org/2020/304.pdf). According to the paper, multiparty version galois key generation is similar to the generation of multiparty public...