Skip to content

Commit

Permalink
key generation
Browse files Browse the repository at this point in the history
  • Loading branch information
TymurKhr committed Aug 8, 2019
1 parent 54e1d01 commit 046ec4c
Show file tree
Hide file tree
Showing 35 changed files with 4,769 additions and 169 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ env-config.js
a.out
.gitconfig

franklin_pk.key
dist
npm-debug.log

Expand Down
19 changes: 19 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ members = [
"core/storage",
"core/franklincircuit",
"core/franklinmodels",
"core/franklin_key_generator",
]
23 changes: 23 additions & 0 deletions core/circuit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[package]
name = "circuit"
version = "0.1.1"
edition = "2018"

authors = [
"Alex Gluchowski <[email protected]>",
"Alex Vlasov <[email protected]>"
]

[dependencies]
merkle_tree = { path = "../merkle_tree" }
models = { path = "../models" }
pairing = { package = "pairing_ce", version = "0.17.0" }
bellman = { package = "bellman_ce", version = "0.3.0" }
sapling_crypto = { package = "sapling-crypto_ce", version = "0.0.5" }
ff = { package = "ff_ce", version = "0.6.0", features = ["derive"] }
rand = "0.4"
rust-crypto = "0.2"
hex = "0.3.2"

[dev-dependencies]
log = "0.4"
Loading

0 comments on commit 046ec4c

Please sign in to comment.