Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kevincharm/broth16

Groth16 using BLS12-381 pairings
https://github.com/kevincharm/broth16

cryptography groth16 zk-snarks zkp

Last synced: about 4 hours ago
JSON representation

Groth16 using BLS12-381 pairings

Awesome Lists containing this project

README

        

# broth16

![](./broth16.jpg)

This is an exercise to learn how Groth16 works. Consider it a toy implementation. DO NOT USE IT FOR ANYTHING SERIOUS.

## Curve

The curve used in this implementation is BLS12-381. It's also using my [toy implementation of asymmetric pairings on BLS12-381](https://github.com/kevincharm/blstoise).

## Useful reference material

- J. Groth, [On the Size of Pairing-based Non-interactive Arguments](https://eprint.iacr.org/2016/260.pdf)
- V. Buterin, [Quadratic Arithmetic Programs: from Zero to Hero](https://medium.com/@VitalikButerin/quadratic-arithmetic-programs-from-zero-to-hero-f6d558cea649)
- N. Gailly, [playsnark](https://github.com/nikkolasg/playsnark)