A Homomorphic Encryption-Driven Framework for Secure Cloud-Based Facial Recognition
Project description
CipherFace
CipherFace is a fully homomorphic encryption-driven python framework for secure cloud-based facial recognition. It combines DeepFace and TenSEAL libraries.
On Prem Encryption
When you initialize a CipherFace object, it sets up an FHE cryptosystem. Currently, CipherFace supports the VGG-Face, Facenet, and Facenet512 facial recognition models, as well as Euclidean and cosine distance metrics.
from cipherface import CipherFace
# build a cryptosystem
onprem = CipherFace(
facial_recognition_model="Facenet",
distance_metric="euclidean",
)
# export keys of built cryptosystem
onprem.export_private_key("private.txt")
onprem.export_public_key("public.txt")
# create vector embedding for 1st image and encrypt in one shot
source_embedding_encrypted = onprem.securely_embed(img_path="dataset/img1.jpg")
The on-prem system should generate embeddings for its facial database and encrypt them in advance. This process only needs to be done once to extract the encrypted embeddings. Once encrypted, these embeddings can be securely stored in the cloud.
Encrypted Distance Calculation On Cloud
The cloud can also generate vector embeddings and encrypt them since encryption only requires a public key. Additionally, it can compute the encrypted distance between a recently generated encrypted embedding and an encrypted embedding created on the on-prem side.
# cloud loads cryptosystem with public key
onprem = CipherFace(
facial_recognition_model="Facenet",
distance_metric="euclidean",
cryptosystem="public.txt",
)
# create vector embedding for target image and encrypt in one shot
target_embedding_encrypted = cloud.securely_embed(img_path="dataset/target.jpg")[0]
encrypted_distance = cloud.calculate_encrypted_distance(
target_embedding_encrypted,
source_embedding_encrypted
)
On Prem Verification
Once the cloud calculates the encrypted distance, only the on-prem system can decrypt it since it holds the private key of the cryptosystem. This allows the on-prem system to determine whether the source and target images belong to the same person or different individuals.
# on prem loads cryptosystem with private key
onprem = CipherFace(
facial_recognition_model="Facenet",
distance_metric="euclidean",
cryptosystem="private.txt",
)
# on prem restores distance
decrypted_distance = onprem.restore(encrypted_distance)
# verification
is_verified = onprem.verify(decrypted_distance)
if is_verified is True:
print("they are same person")
else:
print("they are different persons")
In this setup, the cloud system performs the distance calculation, utilizing most of the computational power. The on-prem system, holding the private key, is only responsible for decrypting the distances to determine whether the images belong to the same person or different individuals.
Contribution
Pull requests are more than welcome! If you are planning to contribute a large patch, please create an issue first to get any upfront questions or design decisions out of the way first.
Before creating a PR, you should run the unit tests and linting locally by running make test && make lint command. Once a PR sent, GitHub test workflow will be run automatically and unit test and linting jobs will be available in GitHub actions before approval.
Support
There are many ways to support a project - starring⭐️ the GitHub repo is just one 🙏
If you do like this work, then you can support it financially on Patreon, GitHub Sponsors or Buy Me a Coffee.
Licence
CipherFace is licensed under the MIT License - see LICENSE for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cipherface-0.0.1.tar.gz.
File metadata
- Download URL: cipherface-0.0.1.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.31.0 requests-toolbelt/0.10.1 urllib3/1.26.15 tqdm/4.50.2 importlib-metadata/6.8.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a2c20724d5a8cb147c8c8ced3e63f5a3465967b7b538e2b9329384be99f85f9
|
|
| MD5 |
d37bc0968ba2646f7b753311773d60e7
|
|
| BLAKE2b-256 |
866db70579ece0277035fbae1c8acafe8e91c135ca477249e625b92caddeb5d0
|
File details
Details for the file cipherface-0.0.1-py3-none-any.whl.
File metadata
- Download URL: cipherface-0.0.1-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.31.0 requests-toolbelt/0.10.1 urllib3/1.26.15 tqdm/4.50.2 importlib-metadata/6.8.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
394e47631ecdcc98062068100530877e43750a782de38148c4b9a7de3fa61e7b
|
|
| MD5 |
32e826a0b188bd696f7eb6725bfba276
|
|
| BLAKE2b-256 |
90db72308bd92b74026762f376e44bf0a618fcfde360075532ad94b64690d627
|