Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cp srinath vesko #1

Open
wants to merge 20 commits into
base: cp-srinath
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
435a2bc
made active only the benchmark for sha256 with 64 byte message
May 19, 2023
102d068
added a local fork of the bellperson library
May 19, 2023
23613b9
replaced sha256 with an iterated version sha256iterated in the benchm…
May 24, 2023
835f67a
in Cargo.toml replaced the dependency on the bellperson library by a …
May 24, 2023
0349198
first try at constructing a Nova proof for N (e.g. N=10) recursive ap…
May 24, 2023
53169e0
fixed the sanity check to check only the first 32 bytes of the output…
May 25, 2023
39b32ec
committed work-in-progress
May 26, 2023
3905d83
first attempt at adding Poseidon hash function to hash output of the …
Jun 2, 2023
8d5d494
added more functionality towards applying poseidon hash function in s…
Jun 5, 2023
82caeb7
code clean-up
Jun 25, 2023
2b5b021
sha256iterated: set number of iterations to 1 for testing
Jun 26, 2023
691cbdb
sha256iterated: added functinality for computing a multistep recursiv…
Jun 26, 2023
cc1ee27
sha256iterated: added recursive proof computation, proof verification…
Jun 26, 2023
3966647
sha256iterated: modified number of iterations to 100; added print of …
Jul 5, 2023
f512727
sha256iterated: added option to benchmark multiple values for the num…
Jul 7, 2023
3fe2080
sha256iterated: removed loop over number of iterations - plan is to c…
Jul 10, 2023
c1c49ff
sha256iterated: added number of sha2 iterations for bench cases resp.…
Jul 12, 2023
09f0a26
sha256iterated: added summation of times for all prove steps
Jul 12, 2023
f648d45
sha256iterated: added bench test for 32KB with N=25 and k=10
Jul 12, 2023
52ec937
sha256iterated: added values for steps and iterations for different s…
Jul 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ license-file = "LICENSE"
keywords = ["zkSNARKs", "cryptography", "proofs"]

[dependencies]
bellperson = { version = "0.24", default-features = false }
#bellperson = { version = "0.24", default-features = false }
#bellperson = { git = "https://github.com/vesselinux/bellperson", rev = "fe3d19a", default-features = false}
bellperson = { git = "https://github.com/vesselinux/bellperson", branch = "sha256modded", default-features = false}
ff = { version = "0.12.0", features = ["derive"] }
digest = "0.8.1"
sha3 = "0.8.2"
Expand Down Expand Up @@ -59,3 +61,7 @@ harness = false
default = []
cuda = ["neptune/cuda", "neptune/pasta", "neptune/arity24"]
opencl = ["neptune/opencl", "neptune/pasta", "neptune/arity24"]

[patch.crates-io]
#bellperson = { git = "https://github.com/vesselinux/bellperson", rev = "fe3d19a", default-features = false}
bellperson = { git = "https://github.com/vesselinux/bellperson", branch = "sha256modded", default-features = false}
Loading