-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from jellevos/todos
Fix open TODOs in code
- Loading branch information
Showing
9 changed files
with
23 additions
and
30 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "scicrypt-he" | ||
description = "A scicrypt crate implementing several well-known partially homomorphic (threshold) cryptosystems" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
authors = ["Jelle Vos <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -13,8 +13,8 @@ readme = "README.md" | |
bench = false # Disable default bench (we use criterion) | ||
|
||
[dependencies] | ||
scicrypt-traits = { version = "0.5.0", path = "../scicrypt-traits" } | ||
scicrypt-numbertheory = { version = "0.5.0", path = "../scicrypt-numbertheory" } | ||
scicrypt-traits = { version = "0.6.0", path = "../scicrypt-traits" } | ||
scicrypt-numbertheory = { version = "0.6.0", path = "../scicrypt-numbertheory" } | ||
curve25519-dalek = "4.0.0-pre.2" | ||
rug = "1.13" | ||
rand_core = "0.6" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "scicrypt-numbertheory" | ||
description = "A scicrypt crate implementing number theoretic algorithms such as random (safe) prime generation" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
authors = ["Jelle Vos <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -13,7 +13,7 @@ readme = "README.md" | |
bench = false # Disable default bench (we use criterion) | ||
|
||
[dependencies] | ||
scicrypt-traits = { version = "0.5.0", path = "../scicrypt-traits" } | ||
scicrypt-traits = { version = "0.6.0", path = "../scicrypt-traits" } | ||
rug = "1.13" | ||
rand_core = "0.6" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "scicrypt-traits" | ||
description = "A scicrypt crate defining general traits for cryptographic systems and functionalities" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
authors = ["Jelle Vos <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "scicrypt" | ||
description = "Lightweight cryptographic building blocks for proof of concept implementations in multi-party computation" | ||
version = "0.5.0" # In sync with `scicrypt-traits`, `scicrypt-numbertheory`, and `scicrypt-he` | ||
version = "0.6.0" # In sync with `scicrypt-traits`, `scicrypt-numbertheory`, and `scicrypt-he` | ||
authors = ["Jelle Vos <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -13,9 +13,9 @@ readme = "README.md" | |
bench = false # Disable default bench (we use criterion) | ||
|
||
[dependencies] | ||
scicrypt-traits = { version = "0.5.0", path = "../scicrypt-traits" } | ||
scicrypt-numbertheory = { version = "0.5.0", path = "../scicrypt-numbertheory" } | ||
scicrypt-he = { version = "0.5.0", path = "../scicrypt-he" } | ||
scicrypt-traits = { version = "0.6.0", path = "../scicrypt-traits" } | ||
scicrypt-numbertheory = { version = "0.6.0", path = "../scicrypt-numbertheory" } | ||
scicrypt-he = { version = "0.6.0", path = "../scicrypt-he" } | ||
|
||
[package.metadata.docs.rs] | ||
rustdoc-args = [ "--html-in-header", "katex-header.html" ] |