Skip to content

Commit

Permalink
V0.8.0 (#15)
Browse files Browse the repository at this point in the history
* Add EdDSA module

* Add sr25519 signature module
  • Loading branch information
guoxbin authored Feb 22, 2020
1 parent 933176c commit 5e4de7c
Show file tree
Hide file tree
Showing 11 changed files with 847 additions and 15 deletions.
93 changes: 86 additions & 7 deletions Cargo.lock

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

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dtool"
version = "0.7.1"
version = "0.8.0"
authors = ["GB <guoxbin@gmail.com>"]
description = "A command-line tool collection to assist development"
categories = ["command-line-utilities"]
Expand All @@ -23,7 +23,7 @@ urlencoding = "1.0.0"
parity-codec = "3.2"
md5 = "0.7.0"
lazy_static = "1.4.0"
ring = { package = "ring-fork-dtool", version = "0.16.11" }
ring = { package = "ring-fork-dtool", version = "0.16.12" }
sha2 = "0.8.0"
sha3 = "0.8.2"
ripemd160 = "0.8.0"
Expand All @@ -40,3 +40,4 @@ signatory = "0.17"
signatory-secp256k1 = "0.17.0"
secp256k1 = "0.15"
untrusted = "0.7.0"
schnorrkel = "0.8.5"
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ Now `dtool` supports:
- [Pbkdf2](./docs/Usage.md#pbkdf2)
- [Case conversion (upper, lower, title, camel, pascal, snake, shouty snake, kebab)](./docs/Usage.md#case-conversion-upper-lower-title-camel-pascal-snake-shouty-snake-kebab)
- [AES encrypt / decrypt](./docs/Usage.md#aes-encrypt--decrypt)
- [ECDSA (Secp256k1, NIST P-256, NIST P384, SM2)](./docs/Usage.md#ecdsa-secp256k1-nist-p-256-nist-p384-sm2)
- [ECDSA (Secp256k1, NIST P-256, NIST P-384, SM2)](./docs/Usage.md#ecdsa-secp256k1-nist-p-256-nist-p-384-sm2)
- [SM4 encrypt / decrypt](./docs/Usage.md#sm4-encrypt--decrypt)
- [EdDSA (Ed25519)](./docs/Usage.md#eddsa-ed25519)
- [sr25519 signature](./docs/Usage.md#sr25519-signature)

## Usage

Expand Down
Loading

0 comments on commit 5e4de7c

Please sign in to comment.