Skip to main content

Homomorphic Encryption processing Unit (HEU) is a subproject of Secretflow that implements high-performance homomorphic encryption algorithms.

Project description

HEU

CircleCI PyPI version

中文

HEU (Homomorphic Encryption processing Unit) is a user-friendly and high-performance homomorphic encryption library that supports multiple types and scalable hardware acceleration.

document

https://www.secretflow.org.cn/docs/heu/

Repo status

Homomorphic encryption algorithms are mainly divided into two categories: partially homomorphic encryption (PHE) and fully homomorphic encryption (FHE). Currently, HEU supports most PHE algorithms, while FHE is still under development and will take some time.

Supported algorithms:

  • Additive homomorphic encryption
    • Paillier (recommended)
    • Okamoto–Uchiyama (recommended)
    • EC ElGamal
    • Damgard-Jurik
    • Damgard-Geisler-Krøigaard (DGK)
  • Fully homomorphic encryption
    • Under development and is the current focus of work.

Each algorithm includes a variety of different implementations, and some implementations support hardware accelerators. For more details, please refer to the Document

Layout

.
├── .circleci  # CI/CD configuration files for circleci
├── .github    # Configuration files for GitHub
├── docs       # HEU documentation in Sphinx format
├── heu        # All the implementation code for HEU
│   ├── algorithms     # Holds the implementations of all algorithms
│   ├── experimental   # Contains some standalone experimental code
│   ├── library        # Implements the application layer functionality of the HE Library
│   │   ├── algorithms # Legacy algorithms not yet migrated to SPI (this directory will be deprecated after migration)
│   │   ├── benchmark  # Contains benchmarking code
│   │   ├── numpy      # Implements a set of Numpy-like interfaces
│   │   └── phe        # PHE Dispatcher implementation (to be deprecated, with replaced by SPI)
│   ├── pylib          # Python bindings
│   └── spi            # Defines the HEU software and hardware access layer interface (SPI)
│       ├── he         # Contains HE SPI and related Sketches
│       └── poly       # Defines polynomial interfaces and related Sketches
└── third_party        # Contains third-party libraries required for compilation; libraries will be automatically downloaded during build

HEU is currently transitioning from the old Dispatcher architecture to an SPI-based framework. The main modules and their code path mappings for both architectures are as follows:

Dispatcher-based architecture:

     Python APIs (Python binding)
          PATH: heu/pylib
                  │
                  ├───────────────────┐
                  │                   ▼
                  │    Tensor Lib with Numpy-like API
                  │        PATH: heu/library/numpy
                  │                   │
                  │     ┌─────────────┘
                  │     │
                  ▼     ▼
     PHE Dispatcher & PHE C++ API
        PATH: heu/library/phe
                  │
                  │
                  ▼
 Various PHE algorithm implementations
     PATH: heu/library/algorithms

SPI-based architecture:

    Python APIs (Python binding)
         PATH: heu/pylib
                 │
                 ├───────────────────┐
                 │                   ▼
                 │    Tensor Lib with Numpy-like API
                 │           PATH: heu/numpy
                 │                   │
                 │ ┌─────────────────┘
                 │ │
                 ▼ ▼
         HE SPI (C++ APIs)
         PATH: heu/spi/he
                 │
                 │
                 ▼
 Various HE algorithm implementations
        PATH: heu/algorithms

For a more detailed introduction to SPI, please click here

2024 Work Plan

Architecture Transition Milestones:

  • HE SPI: Designed a unified interface that supports all PHE/FHE algorithms.
  • Implementation of SPI Sketches. (in progress)
  • Migration of existing algorithms to SPI. (in progress)
  • Automated testing framework for PHE/FHE algorithms. (in progress)
  • Transition of Tensor Lib's underlying layer from Dispatcher to SPI.
  • Transition of PyLib's underlying layer from Dispatcher to SPI.

FHE Milestones:

  • Integration of Microsoft SEAL
  • Integration of OpenFHE.
  • Support for GPU-accelerated CKKS algorithm.
  • Provides FHE interfaces in Tensor Lib.
  • Provides FHE interfaces in PyLib.

Compile and install

Environmental requirements

  • CPU
    • x86_64: minimum required AVX instruction set
    • AArch64: ARMv8
  • OS
    • Ubuntu 18.04+
    • Centos 7
    • macOS 12.0+ (macOS Monterey+)1
  • Python
    • Python 3.9+
  1. Due to CI resource limitation, macOS x64 prebuild binary is no longer available.

Install via Pip

pip install sf-heu

Install from source

The following command will automatically compile and install HEU into the default Python environment:

git clone git@github.com:secretflow/heu.git
cd heu
sh build_wheel_entrypoint.sh

Run unit tests (optional)

# just compile, do not run any UT (optional)
bazel build heu/...

# compile and run all UTs
bazel test heu/...

Contribution Guidelines

SecretFlow is an open and inclusive community, and we welcome any kind of contribution. If you want to improve HEU, please refer to Contribution Guide

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

sf_heu-0.6.0.dev20241106-cp310-cp310-manylinux_2_28_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ ARM64

sf_heu-0.6.0.dev20241106-cp310-cp310-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

File details

Details for the file sf_heu-0.6.0.dev20241106-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sf_heu-0.6.0.dev20241106-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf4ee7380ca9feb8f30b29e97c16802e14d8bccde1f9bc494f2ebd84ca3a2684
MD5 ac589787dc5deb4af19b6e691281f7d7
BLAKE2b-256 e8f10fea3733a290187ad9c2ea98040a2f44a2be67c7e6f429548f38fe0e3d60

See more details on using hashes here.

File details

Details for the file sf_heu-0.6.0.dev20241106-cp310-cp310-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sf_heu-0.6.0.dev20241106-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 539f19c6d945fdb79fb9364bfb1bdc620c6d9d773341c27c4b7112537d89ebbd
MD5 d4a185d2a394525a67039dd8e7e12685
BLAKE2b-256 3a809b2e792f48c4efd8b2eb482536d2b5775467723a355a645ae2b08a80d86f

See more details on using hashes here.

File details

Details for the file sf_heu-0.6.0.dev20241106-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sf_heu-0.6.0.dev20241106-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ac5dd8868dd40e482ff39bebbcb28725c2453f30931a54dbf29e82845d1d04a
MD5 0f9690aba9b9e43e9b8479453a5814d1
BLAKE2b-256 e3355237338f4db005aaf38c75bcb55af3e7bf9a05d436b34f67a8544505ca16

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page