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

When I run the ckks serialization example, I want to compute three numbers, so I modify the coode like this: // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed...

The README of the SEAL library mentions: > Homomorphic encryption is not a generic technology: only some computations on encrypted data are possible. Perhaps within a certain scope/context this statement...

Hi! I have some items that has been hashed with MD5 or SHA256 hash function. Is there any problem if I hash these items with blake2, such as Blake2(MD5(message))?

Hello, I am new to the code base and HE in general. As a learning experience, I was following the 1_bfv_basics.cpp and tried computing “4(x^2+1)(x+1)^2”. Out of the box, the...

Hello there, I have the following working scenario using SEAL library. Client 1: 1. generate public key 1 2. generate secret key 1 3. encrypt data 1 Client 2: 1....

Hi everyone, First thank you for your awesome lib. I had a question about the RAM needed to use SEAL per client. I have seen in some works: [Low-Complexity Deep...

Hi, Suppose we have two ciphertexts c1 and c2. c1 is generated based on param whose slots is 1024. c2 is generated based on param whose slots is 512. Then...

I installed a 3.3.0 version SEAL before. Because I want save ciphertext to file, I want to install 3.5.9 version SEAL. But I failed. Error reporting is the same as...

First of all thank you for this amazing library! When trying to raise a ciphertext to the 128-th power with SEAL, I have noticed that the corresponding function performs a...

When I was debugging the CKKS scheme, I specified the default_seed to generate the RandomGenerator, now I want to verify that the public key will be the same every time...