Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Ethkey - extended keys (#4377)
Browse files Browse the repository at this point in the history
* data structures initial

* hard derivation

* tabs, docs

* more docs

* soft private derivation

* public derivation

* finalize api, fix warnings

* use simple new()

* keypair api

* bump byteorder

* doc tweaks

* remove heavyness from tests

* added test vector infrastructure and examples

* initialization from seed to key pair

* add comment about panic
  • Loading branch information
NikVolf authored and gavofyork committed Feb 5, 2017
1 parent f646ffb commit e257e4e
Show file tree
Hide file tree
Showing 5 changed files with 466 additions and 10 deletions.
20 changes: 11 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ethcore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ semver = "0.5"
bit-set = "0.4"
time = "0.1"
rand = "0.3"
byteorder = "0.5"
byteorder = "1.0"
transient-hashmap = "0.1"
linked-hash-map = "0.3.0"
evmjit = { path = "../evmjit", optional = true }
Expand Down
2 changes: 2 additions & 0 deletions ethkey/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ eth-secp256k1 = { git = "https://github.com/ethcore/rust-secp256k1" }
rustc-serialize = "0.3"
docopt = { version = "0.6", optional = true }
ethcore-bigint = { path = "../util/bigint" }
rust-crypto = "0.2"
byteorder = "1.0"

[features]
default = []
Expand Down
Loading

0 comments on commit e257e4e

Please sign in to comment.