Skip to main content

A state-of-the-art homomorphic encryption framework

Project description


📒 Read documentation | 💛 Community support | 📚 FHE resources


Concrete is an open-source FHE Compiler which simplifies the use of fully homomorphic encryption (FHE).

FHE is a powerful cryptographic tool, which allows computation to be performed directly on encrypted data without needing to decrypt it first. With FHE, you can build services that preserve privacy for all users. FHE is also great against data breaches as everything is done on encrypted data. Even if the server is compromised, in the end no sensitive data is leaked.

Since writing FHE programs can be difficult, Concrete, based on LLVM, make this process easier for developers.

Main features

  • Ability to compile Python functions (that may include NumPy) to their FHE equivalents, to operate on encrypted data
  • Support for large collection of operators
  • Partial support for floating points
  • Support for table lookups on integers
  • Support for integration with Client / Server architectures

Installation

OS / HW Available on Docker Available on PyPI
Linux Yes Yes
Windows Yes Coming soon
Windows Subsystem for Linux Yes Yes
macOS 11+ (Intel) Yes Yes
macOS 11+ (Apple Silicon: M1, M2, etc.) Yes Yes

The preferred way to install Concrete is through PyPI:

pip install -U pip wheel setuptools
pip install concrete-python

You can get the concrete-python docker image by pulling the latest docker image:

docker pull zamafhe/concrete-python:v2.0.0

You can find more detailed installation instructions in installing.md

Getting started

from concrete import fhe

def add(x, y):
    return x + y

compiler = fhe.Compiler(add, {"x": "encrypted", "y": "encrypted"})
inputset = [(2, 3), (0, 0), (1, 6), (7, 7), (7, 1), (3, 2), (6, 1), (1, 7), (4, 5), (5, 4)]

print(f"Compiling...")
circuit = compiler.compile(inputset)

print(f"Generating keys...")
circuit.keygen()

examples = [(3, 4), (1, 2), (7, 7), (0, 0)]
for example in examples:
    encrypted_example = circuit.encrypt(*example)
    encrypted_result = circuit.run(encrypted_example)
    result = circuit.decrypt(encrypted_result)
    print(f"Evaluation of {' + '.join(map(str, example))} homomorphically = {result}")

or if you have a simple function that you can decorate, and you don't care about explicit steps of key generation, encryption, evaluation and decryption:

from concrete import fhe

@fhe.compiler({"x": "encrypted", "y": "encrypted"})
def add(x, y):
    return x + y

inputset = [(2, 3), (0, 0), (1, 6), (7, 7), (7, 1), (3, 2), (6, 1), (1, 7), (4, 5), (5, 4)]

print(f"Compiling...")
circuit = add.compile(inputset)

examples = [(3, 4), (1, 2), (7, 7), (0, 0)]
for example in examples:
    result = circuit.encrypt_run_decrypt(*example)
    print(f"Evaluation of {' + '.join(map(str, example))} homomorphically = {result}")

Documentation

Full, comprehensive documentation is available at https://docs.zama.ai/concrete.

Target users

Concrete is a generic library that supports a variety of use cases. Because of this flexibility, it doesn't provide primitives for specific use cases.

If you have a specific use case, or a specific field of computation, you may want to build abstractions on top of Concrete.

One such example is Concrete ML, which is built on top of Concrete to simplify Machine Learning oriented use cases.

Tutorials

Various tutorials are proposed in the documentation to help you start writing homomorphic programs:

If you have built awesome projects using Concrete, feel free to let us know and we'll link to it.

Project layout

concrete project is a set of several modules which are high-level frontends, compilers, backends and side tools.

  • frontends directory contains a python frontend.
  • compilers directory contains the concrete-compiler and concrete-optimizer modules. concrete-compiler is a compiler that:
    • synthetize a FHE computation dag expressed as a MLIR dialect
    • compile to a set of artifacts
    • and provide tools to manipulate those artifacts at runtime. concrete-optimizer is a specific module used by the compiler to find the best, secure and accurate set of cryptographic parameters for a given dag.
  • The backends directory contains implementations of cryptographic primitives on different computation unit, used by concrete-compiler runtime. concrete-cpu module provides CPU implementation, while concrete-cuda module provides GPU implementation using the CUDA platform.
  • The tools directory contains side tools used by the rest of the project.

Need support?

Citing Concrete

To cite Concrete in academic papers, please use the following entry:

@Misc{Concrete,
  title={{Concrete: TFHE Compiler that converts python programs into FHE equivalent}},
  author={Zama},
  year={2022},
  note={\url{https://github.com/zama-ai/concrete}},
}

License

This software is distributed under the BSD-3-Clause-Clear license. If you have any questions, please contact us at hello@zama.ai.

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

concrete_python-2.5.1-cp311-cp311-manylinux_2_28_x86_64.whl (65.5 MB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

concrete_python-2.5.1-cp311-cp311-macosx_11_0_x86_64.whl (49.8 MB view hashes)

Uploaded CPython 3.11 macOS 11.0+ x86-64

concrete_python-2.5.1-cp311-cp311-macosx_11_0_arm64.whl (43.1 MB view hashes)

Uploaded CPython 3.11 macOS 11.0+ ARM64

concrete_python-2.5.1-cp310-cp310-manylinux_2_28_x86_64.whl (65.5 MB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

concrete_python-2.5.1-cp310-cp310-macosx_11_0_x86_64.whl (49.8 MB view hashes)

Uploaded CPython 3.10 macOS 11.0+ x86-64

concrete_python-2.5.1-cp310-cp310-macosx_11_0_arm64.whl (43.1 MB view hashes)

Uploaded CPython 3.10 macOS 11.0+ ARM64

concrete_python-2.5.1-cp39-cp39-manylinux_2_28_x86_64.whl (65.5 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

concrete_python-2.5.1-cp39-cp39-macosx_11_0_x86_64.whl (49.8 MB view hashes)

Uploaded CPython 3.9 macOS 11.0+ x86-64

concrete_python-2.5.1-cp39-cp39-macosx_11_0_arm64.whl (43.1 MB view hashes)

Uploaded CPython 3.9 macOS 11.0+ ARM64

concrete_python-2.5.1-cp38-cp38-manylinux_2_28_x86_64.whl (65.5 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

concrete_python-2.5.1-cp38-cp38-macosx_11_0_x86_64.whl (49.8 MB view hashes)

Uploaded CPython 3.8 macOS 11.0+ x86-64

concrete_python-2.5.1-cp38-cp38-macosx_11_0_arm64.whl (43.1 MB view hashes)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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