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

https://github.com/varun-doshi/relliptic

Finite Field Elliptic Curves in rust
https://github.com/varun-doshi/relliptic

cryptography elliptic-curves rust zk

Last synced: 11 months ago
JSON representation

Finite Field Elliptic Curves in rust

Awesome Lists containing this project

README

          

# RELLIPTIC : Rust implementation of Finite Field Elliptic Curves

### Warning: This is strcitly for learning purposes currently and should not be used in any production environment

RELLIPTIC is an ongoing Finite Field Elliptic Curves in Rust.

Current ECC Operations:
✅ Point Creation
✅ Addition
✅ Subtraction
✅ Negation
⬜ Multiplication

Check the `tests` folder to understand how to use

Uses the following custom built crates:
- [Fintie Field](https://github.com/varun-doshi/modc)
- [Polynomial](https://github.com/varun-doshi/rpolynomial)