Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 523 Bytes

README.md

File metadata and controls

23 lines (20 loc) · 523 Bytes

Basic STARK implementation from scratch

Building a STARK protocol from scratch for learning.

TODO List

  • Algebra
    • Finite field
    • Field element
      • Add / Sub
      • Compute inverse
      • Mul / Div
    • Polynomials over finite field
      • Add / Sub
      • Mul / Div
      • Evaluation
      • Lagrange interpolation
  • Crypto primitives
    • [] Hash - In progress
    • [] Merkle Trees - In progress
    • [] Fiat-Shamir
    • [] FRI
  • ...