Fully Homomorphic Encryption for Everyone
Get started with FHE in Python:
pip install luxfhe
from luxfhe import Client, Server
client = Client()
encrypted = client.encrypt(42)
# Compute on encrypted data...
Learn how to build privacy-preserving applications.
Examples, tutorials, and more.