Skip to content
/ heu Public
forked from secretflow/heu

A homomorphic encryption processing unit.

License

Notifications You must be signed in to change notification settings

6fj/heu

 
 

Repository files navigation

HEU

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

The purpose of HEU is to lower the threshold for the use of homomorphic encryption, so that users can use homomorphic encryption algorithms to build privacy-preserving applications without professional cryptography knowledge.

Documentation

https://heu.readthedocs.io/

Background

This project consists of two parts:

HE Library (currently implemented): This project can be used as a high-performance and complete homomorphic encryption library, which integrates almost all homomorphic encryption algorithms in the industry. At the same time, HEU encapsulates each algorithm and provides a uniform interface. You can switch between different HE algorithms at any time without modifying business code.

HE device (in work): As a component of Secretflow, HEU abstracts the homomorphic encryption algorithms into a programmable device, making it easy for users to flexibly build applications using the homomorphic encryption technology without professional knowledge. HEU (device) aims to build a complete computing solution through HE, that is, based on HE, any type of computing can be completed. Compared with PPU, HEU's computation is purely local without any network communication, so HEU and PPU are complementary

Depending on the computing power, HEU has 4 working modes:

working mode Supported calculation types Number of calculations HE algorithms Calculating speed Ciphertext size
PHEU addition Unlimited Paillier, - Fast Small
LHEU addition, multiplication Limited BGV, CKKS Fast (packed mode) Least (packed mode)
FHEU (low precision) addition, mux, LUT Unlimited TFHE (Torus) Fastest Large
FHEU (high precision) addition, multiplication, comparison, mux Unlimited TFHE (Bitwise) Very slow Largest

Repo status

PHE has been basically developed, LHE and FHE are under development

Build & UnitTest

Build all

# build all
bazel build heu/...

# test all (optional)
bazel test heu/...

Build python lib

# require Python 3.8
# build and install python library
sh heu/pylib/reinstall.sh

About

A homomorphic encryption processing unit.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 79.9%
  • Rust 7.1%
  • Python 6.5%
  • Starlark 4.8%
  • C 1.5%
  • Shell 0.2%