Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 663 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 663 Bytes

Credit Score with Fully Homomorphic Encryption

This repository contains the implementation of a credit score system using Fully Homomorphic Encryption (FHE).

Setup

Python

We use poetry to manage dependencies. To install the dependencies, run:

poetry install

To activate the virtual environment, run:

poetry shell

Rust

We use Cargo to manage dependencies. To install the dependencies, run:

cd rust/fhe
cargo build

To run the code, run:

cargo run --release

Drop the --release flag if you want to run the code in debug mode.