my eye
published
  • 2024-03-14T05:07:57.059168-07:00
visibility
  • public
author
  • {'uid': ['/'], 'name': ['Angelo Gladding'], 'nickname': ['angelo'], 'note': ['<a href=/hacking#for-right>Hacker for right</a> <a href=/homesteading>homesteading into the future</a>.'], 'email': ['angelo@ragt.ag'], 'photo': ['XWjA.png']}
url
  • /homomorphic-encryption
  • /FHE
  • /2024/03/14/dk
type
  • entry
name
  • Homomorphic Encryption
updated
  • 2024-03-20T17:39:18.819016-07:00

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/