Skip to content

Commit

Permalink
Make subkey support Sr25519 crypto (paritytech#1933)
Browse files Browse the repository at this point in the history
* Make subkey support Sr25519 crypto.

* Rebuild runtime.

* Build and rejig locks.

* Fix grumbles

* Derivations

* Introduce tests
  • Loading branch information
gavofyork authored Mar 7, 2019
1 parent 5fa39c4 commit 8d96c65
Show file tree
Hide file tree
Showing 13 changed files with 2,160 additions and 1,106 deletions.
64 changes: 61 additions & 3 deletions Cargo.lock

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

6 changes: 5 additions & 1 deletion core/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ untrusted = { version = "0.6", optional = true }
hex-literal = { version = "0.1", optional = true }
base58 = { version = "0.1", optional = true }
blake2-rfc = { version = "0.2.18", optional = true }
schnorrkel = { version = "0.0", optional = true }
schnorrkel = { git = "https://github.com/w3f/schnorrkel", optional = true }
rand = { version = "0.6", optional = true }
sha2 = { version = "0.8", optional = true }
substrate-bip39 = { git = "https://github.com/paritytech/substrate-bip39", optional = true }
tiny-bip39 = { version = "0.6.0", optional = true }

[dev-dependencies]
substrate-serializer = { path = "../serializer" }
Expand Down Expand Up @@ -54,6 +56,8 @@ std = [
"untrusted",
"hex-literal",
"base58",
"substrate-bip39",
"tiny-bip39",
"serde_derive",
"byteorder/std",
"rand",
Expand Down
Loading

0 comments on commit 8d96c65

Please sign in to comment.