BeStrongok / heu

A high-performance homomorphic encryption algorithm library.

Home Page:https://www.secretflow.org.cn/docs/heu/en/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HEU

CircleCI

Homomorphic Encryption processing Unit (HEU) is a subproject 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://www.secretflow.org.cn/docs/heu/

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, OU 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

# build and install python library
sh build_wheel_entrypoint.sh

About

A high-performance homomorphic encryption algorithm library.

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

License:Apache License 2.0


Languages

Language:C++ 89.8%Language:Python 3.6%Language:Starlark 3.0%Language:Rust 2.3%Language:C 1.2%Language:Shell 0.1%