First commit

This commit is contained in:
th4s
2023-07-20 15:28:17 +02:00
commit 0154347430
3 changed files with 12 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/target
/Cargo.lock

9
Cargo.toml Normal file
View File

@@ -0,0 +1,9 @@
[package]
name = "two-party-mul"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
mpz-share-conversion-core = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }

1
src/lib.rs Normal file
View File

@@ -0,0 +1 @@
use mpz_share_conversion_core::Field;