An open API service indexing awesome lists of open source software.

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

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
```