author Angelo Gladding
name Homomorphic Encryption
published 2024-03-14T05:07:57.059168-07:00
type entry
updated 2024-03-20T17:39:18.819016-07:00
url /homomorphic-encryption, /FHE, /2024/03/14/dk
visibility public
Content
A form of encryption that allows computations to be performed on encrypted data without first having to decrypt it. > Full Homomorphic Encryption (FHE) allows untrusted (e.g. cloud) applications to operate directly on encrypted data, eliminating the need for server-side decryption or trust. > > simplefhe is a Python library for FHE that intends to be as easy-to-use as possible. In the simplest case, just a few lines of code are all you need to have working FHE! 1. Keypair Generation 2. Client-Side Encryption 3. Server-Side Processing 4. Client-Side Decryption --- https://pypi.org/project/simplefhe/ |