Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 390 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 390 Bytes

A Simple BLS12-381 Playground

A simple playground for experimenting with BLS12-381 element manipulation.

Setup

# Create a Python virtual environment
python3 -m venv venv

# Activate the virtual environment
source venv/bin/activate

# Install required Python packages
pip install -r requirements.txt

Test

The playground usings pytest for testing.

pytest