4 releases (2 breaking)

0.4.0 Nov 7, 2023
0.3.0 Oct 26, 2023
0.2.1 Aug 1, 2023
0.2.0 Jul 28, 2023

#1646 in Data structures

Download history 9979/week @ 2024-01-08 12312/week @ 2024-01-15 13322/week @ 2024-01-22 11961/week @ 2024-01-29 10852/week @ 2024-02-05 13363/week @ 2024-02-12 11798/week @ 2024-02-19 12532/week @ 2024-02-26 9044/week @ 2024-03-04 11958/week @ 2024-03-11 12235/week @ 2024-03-18 11903/week @ 2024-03-25 9470/week @ 2024-04-01 8855/week @ 2024-04-08 12088/week @ 2024-04-15 10226/week @ 2024-04-22

40,918 downloads per month
Used in 40 crates (9 directly)

MIT/Apache

155KB
3.5K SLoC

This crate exposes the main traits and core structures of the bellpepper library.


lib.rs:

bellpepper is a crate for building zk-SNARK circuits. It provides circuit traits and and primitive structures, as well as basic gadget implementations such as booleans and number abstractions.

Example circuit

Say we want to write a circuit that proves we know the preimage to some hash computed using SHA-256d (calling SHA-256 twice). The preimage must have a fixed length known in advance (because the circuit parameters will depend on it), but can otherwise have any value. We take the following strategy:

  • Witness each bit of the preimage.
  • Compute hash = SHA-256d(preimage) inside the circuit.
  • Expose hash as a public input using multiscalar packing.

Dependencies

~0.9–1.5MB
~32K SLoC