mirror of
https://github.com/tlsnotary/tlsn.git
synced 2026-01-09 14:48:13 -05:00
rename pop to tlsn
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -13,4 +13,4 @@ Cargo.lock
|
||||
# MSVC Windows builds of rustc generate these, which store debugging information
|
||||
*.pdb
|
||||
|
||||
pop-mpc-circuits/compiled/*
|
||||
tlsn-mpc-circuits/compiled/*
|
||||
@@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "pop-mpc-aio"
|
||||
name = "tlsn-mpc-aio"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
@@ -8,13 +8,13 @@ name = "mpc_aio"
|
||||
|
||||
[features]
|
||||
default = ["ss", "ot", "garble"]
|
||||
ot = ["pop-mpc-core/ot", "pop-mpc-core/proto", "rand_chacha"]
|
||||
garble = ["pop-mpc-core/garble", "pop-mpc-core/proto", "aes"]
|
||||
ss = ["pop-mpc-core/ss", "pop-mpc-core/proto", "p256"]
|
||||
ot = ["tlsn-mpc-core/ot", "tlsn-mpc-core/proto", "rand_chacha"]
|
||||
garble = ["tlsn-mpc-core/garble", "tlsn-mpc-core/proto", "aes"]
|
||||
ss = ["tlsn-mpc-core/ss", "tlsn-mpc-core/proto", "p256"]
|
||||
|
||||
[dependencies]
|
||||
pop-mpc-core = { path = "../mpc-core", default-features = false }
|
||||
pop-utils-aio = { path = "../utils-aio" }
|
||||
tlsn-mpc-core = { path = "../mpc-core", default-features = false }
|
||||
tlsn-utils-aio = { path = "../utils-aio" }
|
||||
async-trait = "0.1.53"
|
||||
prost = "0.9"
|
||||
futures = "0.3"
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
[package]
|
||||
name = "pop-mpc-circuits"
|
||||
name = "tlsn-mpc-circuits"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
pop-mpc-core = { path = "../mpc-core" }
|
||||
tlsn-mpc-core = { path = "../mpc-core" }
|
||||
regex = "1.5.4"
|
||||
prost = "0.9"
|
||||
rayon = "1.5"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# pop-mpc-circuits
|
||||
# tlsn-mpc-circuits
|
||||
This crate assists with converting circuits from Bristol-fashion Format to Protobuf models.
|
||||
|
||||
## Usage
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "pop-mpc-core"
|
||||
name = "tlsn-mpc-core"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# pop-mpc-core
|
||||
# tlsn-mpc-core
|
||||
|
||||
This crate contains core components for performing MPC, or more specifically 2PC.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "pop-tls-aio"
|
||||
name = "tlsn-tls-aio"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "pop-tls-core"
|
||||
name = "tlsn-tls-core"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
|
||||
@@ -12,7 +12,7 @@ default = ["prf"]
|
||||
prf = []
|
||||
|
||||
[dependencies]
|
||||
pop-mpc-core = { path = "../mpc-core" }
|
||||
tlsn-mpc-core = { path = "../mpc-core" }
|
||||
sha2 = { version = "0.10.1", features = ["compress"] }
|
||||
digest = { version = "0.10.3" }
|
||||
hmac = { version = "0.12.1" }
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "pop-utils-aio"
|
||||
name = "tlsn-utils-aio"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user