-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v0.1.0 candidate - support for EdDSA, Schnorr & fix dependencies #34
Merged
Changes from 28 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
97d0346
move all api to 'ecdsa' in preparation to more protocols
efac5b1
integration-tests pass
fdb6839
integration-tests work with schnorr
e08ad4b
PrivateShare::get_child
73dd8e7
fix dependency for multi-party-schnorr
148af99
fix dependency for multi-party-schnorr #2
a2034f8
fix dependency for multi-party-schnorr #3
3e97481
info! prints to debug!
47d0100
two-party EdDSA works
oleiba 14bd425
support EdDSA
oleiba b54301c
dedicated Eddsa prefix to structs
oleiba 1e4246b
dynamoDB compatible table names, add customerId for EddsaAggPublicKey
oleiba da4b5ef
change rust nightly in Docker
oleiba 68ee548
Adding EdDSA client key generation to C interface + Merge server rec…
boazarad88 ab5f762
fix: exposing eddsa::{KeyAgg, KeyPair}
oleiba 1143ab9
logs & fixes
oleiba b3abf7a
logs & fixes
oleiba 44cafaa
remove prints
oleiba 8bdd0ef
Adding C headers for eddsa::sign (#32)
boazarad88 f21a4ba
Replacing all panics with error returns in sign functions. (#33)
boazarad88 ecc6a66
update dependencies
oleiba 163a56b
Revert "update dependencies"
oleiba 52672e1
use branches feature/libra-support-fix
oleiba 1534d99
fix compilation error integration-tests
oleiba 73b86df
fix dependencies tags
oleiba d1876f9
update to use [email protected], [email protected], rocket@dcea956 (ring 0.14)
oleiba c388082
fix dependencies tags
oleiba a7cdc19
Adding integration test in Docker
gbenattar 9878684
Adding integration test in Docker
gbenattar 273b202
multi-party-eddsa: tag = "[email protected]"
oleiba b225d04
Merge commit '987868451848940ce7f97a8ca4f448eebac9d100' into v0.1.0
oleiba 5c2eccc
multi-party-eddsa: tag [email protected]
oleiba 0e3bd43
[email protected]
oleiba File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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,10 @@ | ||
[package] | ||
name = "gotham-client" | ||
version = "0.1.0" | ||
authors = ["gbenattar <[email protected]>"] | ||
authors = [ | ||
"gbenattar <[email protected]>", | ||
"Oded Leiba <[email protected]" | ||
] | ||
edition = "2018" | ||
|
||
[lib] | ||
|
@@ -21,32 +24,42 @@ log = "0.4" | |
time = "*" | ||
clap = { version = "2.32", features = ["yaml"] } | ||
reqwest = "0.9.5" | ||
failure = "0.1.5" | ||
uuid = { version = "0.7", features = ["v4"] } | ||
electrumx_client = { git = "https://github.com/KZen-networks/rust-electrumx-client" } | ||
electrumx_client = { git = "https://github.com/KZen-networks/rust-electrumx-client", tag = "[email protected]" } | ||
itertools = "0.8.0" | ||
hex = "0.3.2" | ||
bitcoin = "0.16.0" | ||
bitcoin = "0.20.0" | ||
config = "0.9" | ||
|
||
[dependencies.secp256k1] | ||
version = "0.12" | ||
features = ["rand", "serde"] | ||
|
||
[dependencies.zk-paillier] | ||
git = "https://github.com/KZen-networks/zk-paillier" | ||
tag = "v0.2.0" | ||
|
||
[dependencies.kms] | ||
git = "https://github.com/KZen-networks/kms" | ||
git = "https://github.com/KZen-networks/kms-secp256k1" | ||
tag = "v0.1.0" | ||
|
||
[dependencies.multi-party-ecdsa] | ||
git = "https://github.com/KZen-networks/multi-party-ecdsa" | ||
tag = "v0.1.0" | ||
|
||
[dependencies.multi-party-ed25519] | ||
git = "https://github.com/KZen-networks/multi-party-eddsa" | ||
branch = "alt-curv-v0.2.0" | ||
|
||
[dependencies.multi-party-schnorr] | ||
git = "https://github.com/KZen-networks/multi-party-schnorr" | ||
tag = "v0.3.0" | ||
|
||
[dependencies.curv] | ||
git = "https://github.com/KZen-networks/curv" | ||
tag = "v0.2.0" | ||
features = ["ec_secp256k1"] | ||
|
||
[patch.crates-io] | ||
rust-gmp = { version = "0.5.0", features = ["serde_support"], git = "https://github.com/KZen-networks/rust-gmp" } | ||
|
||
[dependencies.centipede] | ||
git = "https://github.com/KZen-networks/centipede" | ||
git = "https://github.com/KZen-networks/centipede" | ||
tag = "v0.2.0" |
This file was deleted.
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#28 ?