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
- Host: GitHub
- URL: https://github.com/varun-doshi/relliptic
- Owner: varun-doshi
- Created: 2024-12-21T15:57:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-25T06:57:20.000Z (over 1 year ago)
- Last Synced: 2025-05-21T23:08:11.720Z (about 1 year ago)
- Topics: cryptography, elliptic-curves, rust, zk
- Language: Rust
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)