Skip to content

Commit 5e4de7c

Browse files
authored
V0.8.0 (#15)
* Add EdDSA module * Add sr25519 signature module
1 parent 933176c commit 5e4de7c

File tree

11 files changed

+847
-15
lines changed

11 files changed

+847
-15
lines changed

Cargo.lock

Lines changed: 86 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dtool"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
authors = ["GB <[email protected]>"]
55
description = "A command-line tool collection to assist development"
66
categories = ["command-line-utilities"]
@@ -23,7 +23,7 @@ urlencoding = "1.0.0"
2323
parity-codec = "3.2"
2424
md5 = "0.7.0"
2525
lazy_static = "1.4.0"
26-
ring = { package = "ring-fork-dtool", version = "0.16.11" }
26+
ring = { package = "ring-fork-dtool", version = "0.16.12" }
2727
sha2 = "0.8.0"
2828
sha3 = "0.8.2"
2929
ripemd160 = "0.8.0"
@@ -40,3 +40,4 @@ signatory = "0.17"
4040
signatory-secp256k1 = "0.17.0"
4141
secp256k1 = "0.15"
4242
untrusted = "0.7.0"
43+
schnorrkel = "0.8.5"

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ Now `dtool` supports:
3030
- [Pbkdf2](./docs/Usage.md#pbkdf2)
3131
- [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)
3232
- [AES encrypt / decrypt](./docs/Usage.md#aes-encrypt--decrypt)
33-
- [ECDSA (Secp256k1, NIST P-256, NIST P384, SM2)](./docs/Usage.md#ecdsa-secp256k1-nist-p-256-nist-p384-sm2)
33+
- [ECDSA (Secp256k1, NIST P-256, NIST P-384, SM2)](./docs/Usage.md#ecdsa-secp256k1-nist-p-256-nist-p-384-sm2)
3434
- [SM4 encrypt / decrypt](./docs/Usage.md#sm4-encrypt--decrypt)
35+
- [EdDSA (Ed25519)](./docs/Usage.md#eddsa-ed25519)
36+
- [sr25519 signature](./docs/Usage.md#sr25519-signature)
3537

3638
## Usage
3739

0 commit comments

Comments
 (0)