https://github.com/j2kun/fhe-schemes
A tutorial repository for learning implementations of FHE schemes
https://github.com/j2kun/fhe-schemes
Last synced: 28 days ago
JSON representation
A tutorial repository for learning implementations of FHE schemes
- Host: GitHub
- URL: https://github.com/j2kun/fhe-schemes
- Owner: j2kun
- Created: 2024-02-22T14:22:56.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-29T23:25:21.000Z (over 2 years ago)
- Last Synced: 2025-01-07T06:32:09.797Z (over 1 year ago)
- Language: Python
- Size: 41 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FHE schemes
This repository contains learning-oriented implementations of major FHE schemes
and their optimizations. The focus is on correctness and legibility.
## Requirements
```bash
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```
## Running tests
After installing requirements,
```bash
python -m pytest
```