-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8b9d961
commit 20d92dd
Showing
10 changed files
with
2,228 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#import "src/preamble.typ":* | ||
#let chapter(filename) = { | ||
include filename | ||
pagebreak(weak: true) | ||
} | ||
#let part(s) = { | ||
set text(size:1.4em, fill: rgb("#002299")) | ||
heading(numbering: none, s) | ||
} | ||
|
||
#show: evan.with( | ||
title: "Five Easy Pieces in Programmable Cryptography", | ||
author: "0xPARC", | ||
date: datetime.today(), | ||
) | ||
|
||
#quote(attribution: [gubsheep introducing progcrypto to Evan for the first time])[ | ||
Evan, I can now prove to you that I have a message $M$ such that | ||
$op("sha")(M) = "0xa91af3ac..."$, without revealing $M$. | ||
But not just for SHA. I can do this for any function you want. | ||
] | ||
|
||
#toc | ||
#pagebreak() | ||
|
||
#part[Oblivious transfer, garbled circuits, and multiparty computation] | ||
#chapter("src/ot.typ") | ||
#chapter("src/mpc2.typ") | ||
|
||
#part[zkSNARK constructions] | ||
#chapter("src/ec.typ") | ||
#chapter("src/pair.typ") | ||
#chapter("src/kzg.typ") | ||
#chapter("src/plonk.typ") | ||
|
Oops, something went wrong.