Microsoft SEAL is an easy-to-use open-source (MIT licensed) homomorphic encryption library developed by the Cryptography Research group at Microsoft.
pybind11 is a lightweight header-only library that exposes C++ types in Python and vice versa, mainly to create Python bindings of existing C++ code.
This is a python binding for the Microsoft SEAL library.
-
Recommend: Clang++ (>= 10.0) or GNU G++ (>= 9.4), CMake (>= 3.16)
# Optional sudo apt-get install git build-essential cmake python3 python3-dev python3-pip # Get the repository or download from the releases git clone https://github.com/Huelse/SEAL-Python.git cd SEAL-Python # Install dependencies pip3 install numpy pybind11 # Init the SEAL and pybind11 git submodule update --init --recursive # Get the newest repositories (dev only) # git submodule update --remote # Build the SEAL lib without the msgsl zlib and zstandard compression cd SEAL cmake -S . -B build -DSEAL_USE_MSGSL=OFF -DSEAL_USE_ZLIB=OFF -DSEAL_USE_ZSTD=OFF cmake --build build cd .. # Run the setup.py, the dynamic library will be generated in the current directory python3 setup.py build_ext -i # Test cp seal.*.so examples cd examples python3 4_bgv_basics.py
Build examples:
-DSEAL_BUILD_EXAMPLES=ON
-
Visual Studio 2019 or newer is required. x64 support only! And use the x64 Native Tools Command Prompt for VS command prompt to configure and build the Microsoft SEAL library. It's usually can be found in your Start Menu.
# Run in "x64 Native Tools Command Prompt for VS" command prompt cmake -S . -B build -G Ninja -DSEAL_USE_MSGSL=OFF -DSEAL_USE_ZLIB=OFF cmake --build build # Build pip install numpy pybind11 python setup.py build_ext -i # Test cp seal.*.pyd examples cd examples python 4_bgv_basics.py
Microsoft SEAL official docs.
-
requires: Docker
To build source code into a docker image (from this directory):
docker build -t huelse/seal -f Dockerfile .
To use the image by running it as an interactive container:
docker run -it huelse/seal
-
See more in
examples/7_serialization.py
, here is a simple example:cipher.save('cipher') load_cipher = Ciphertext() load_cipher.load(context, 'cipher') # work if the context is valid.
Supported classes:
EncryptionParameters, Ciphertext, Plaintext, SecretKey, PublicKey, RelinKeys, GaloisKeys
-
There are a lot of changes in the latest SEAL lib, we try to make the API in python can be used easier, but it may remain some problems unknown, if any problems or bugs, report issues.
Email: [email protected]
-
ImportError: undefined symbol
Build a shared SEAL library
cmake . -DBUILD_SHARED_LIBS=ON
, and get thelibseal.so
,then change the path in
setup.py
, and rebuild. -
ImportError: libseal.so... cannot find
a.
sudo ln -s /path/to/libseal.so /usr/lib
b. add
/usr/local/lib
or theSEAL/native/lib
to/etc/ld.so.conf
and refresh itsudo ldconfig
c. build in cmake.
-
BuildError:
-
C++17 at least
-
x86_64 is required, which
x86_32
is not supported
-
-
ModuleNotFoundError: No module named 'seal'
The
.so
or.pyd
file must be in the current directory, or you haveinstall
it already. -
Windows Error LNK2001, RuntimeLibrary and MT_StaticRelease mismatch
Only
x64
is supported, Choosex64 Native Tools Command Prompt for VS
. -
Warning about building the dynamic library with static library in MacOS, etc.
-
Build a shared SEAL library by adding a CMake option
-DBUILD_SHARED_LIBS=ON
-
Edit
extra_objects
in setup.py to*.dylib
or else.
-
-
Professor: Dr. Chen