Initial commit.

This commit is contained in:
Sean Bowe 2016-08-01 18:48:33 -06:00
commit 34aa24a040
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
5 changed files with 45 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
target

4
Cargo.lock generated Normal file
View File

@ -0,0 +1,4 @@
[root]
name = "mpc"
version = "0.0.1"

12
Cargo.toml Normal file
View File

@ -0,0 +1,12 @@
[package]
name = "mpc"
version = "0.0.1"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Ariel Gabizon <ariel@z.cash>",
"Matthew Green <mgreen@cs.jhu.edu>"
]
license = "MIT OR Apache-2.0"
readme = "README.md"
[dependencies]

25
README.md Normal file
View File

@ -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

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
}