1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
A CLI tool and Rust library for Bitcoin-related cryptography operations.
- ----
```bash
cargo install bitcoin-crypto-toolkit
```
Add to your `Cargo.toml`:
```toml
[dependencies]
bitcoin-crypto-toolkit = "0.1.0"
```
Generate a new keypair:
```bash
bitcoin-crypto-toolkit generate-key
```
Derive address from public key:
```bash
bitcoin-crypto-toolkit derive-address 02...
```
Hash some data (hex input):
```bash
bitcoin-crypto-toolkit sha256 68656c6c6f
```
MIT