From 34aa24a040a7a515bc98ecde967f3084a71c6b5f Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Mon, 1 Aug 2016 18:48:33 -0600 Subject: [PATCH] Initial commit. --- .gitignore | 1 + Cargo.lock | 4 ++++ Cargo.toml | 12 ++++++++++++ README.md | 25 +++++++++++++++++++++++++ src/main.rs | 3 +++ 5 files changed, 45 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 README.md create mode 100644 src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eb5a316 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..d4cde19 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,4 @@ +[root] +name = "mpc" +version = "0.0.1" + diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..90eb071 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "mpc" +version = "0.0.1" +authors = [ + "Sean Bowe ", + "Ariel Gabizon ", + "Matthew Green " +] +license = "MIT OR Apache-2.0" +readme = "README.md" + +[dependencies] diff --git a/README.md b/README.md new file mode 100644 index 0000000..88df415 --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# mpc + +This is a multi-party computation protocol for the key-generation step of Pinnochio zkSNARKs [[PGHR13]](https://eprint.iacr.org/2013/279) designed for use in the Zcash "Sprout" public parameter ceremony. + +## License + +Licensed under either of + + * MIT license, ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) + * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) + +at your option. + +### Contribution + +Unless you explicitly state otherwise, any contribution intentionally +submitted for inclusion in the work by you, as defined in the Apache-2.0 +license, shall be dual licensed as above, without any additional terms or +conditions. + +## Authors + +* [Sean Bowe](https://github.com/ebfull) +* Ariel Gabizon +* Matthew Green diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..58dfaaa --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + +}