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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
| easy_encryption_tool hash -i "hello"
{
"metadata": {
"operation": "hash",
"algorithm": "sha256",
"encoding": "hex",
"input": {
"type": "text",
"size": 5
},
"parameters": {
"digest_size": 32
}
},
"result": {
"digest": "2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824"
},
"runtime": {
"request_id": "d05b1905-8a7c-4725-a4dc-4d626c73460c",
"timestamp": "2026-02-21T15:24:03.903422+08:00",
"duration_ms": 0.01,
"host": "192.168.1.103",
"version": "v2.3.2"
}
}
easy_encryption_tool hash -i "hello" -a sha384
{
"metadata": {
"operation": "hash",
"algorithm": "sha384",
"encoding": "hex",
"input": {
"type": "text",
"size": 5
},
"parameters": {
"digest_size": 48
}
},
"result": {
"digest": "59e1748777448c69de6b800d7a33bbfb9ff1b463e44354c3553bcdb9c666fa90125a3c79f90397bdf5f6a13de828684f"
},
"runtime": {
"request_id": "973a7d8c-acdd-4cf3-88af-473d91b3d701",
"timestamp": "2026-02-21T15:25:24.244441+08:00",
"duration_ms": 0.011,
"host": "192.168.1.103",
"version": "v2.3.2"
}
}
easy_encryption_tool hash -i "hello" -a sha512
{
"metadata": {
"operation": "hash",
"algorithm": "sha512",
"encoding": "hex",
"input": {
"type": "text",
"size": 5
},
"parameters": {
"digest_size": 64
}
},
"result": {
"digest": "9b71d224bd62f3785d96d46ad3ea3d73319bfbc2890caadae2dff72519673ca72323c3d99ba5c11d7c7acc6e14b8c5da0c4663475c2e5c3adef46f73bcdec043"
},
"runtime": {
"request_id": "08361248-887f-4b6b-bcb5-0a2a2990b2eb",
"timestamp": "2026-02-21T15:26:15.293459+08:00",
"duration_ms": 0.012,
"host": "192.168.1.103",
"version": "v2.3.2"
}
}
easy_encryption_tool hash -i "hello" -a sm3
{
"metadata": {
"operation": "hash",
"algorithm": "sm3",
"encoding": "hex",
"input": {
"type": "text",
"size": 5
},
"parameters": {
"digest_size": 32
}
},
"result": {
"digest": "becbbfaae6548b8bf0cfcad5a27183cd1be6093b1cceccc303d9c61d0a645268"
},
"runtime": {
"request_id": "12b8ad2f-9909-4078-bbfb-45282565787b",
"timestamp": "2026-02-21T15:26:31.605726+08:00",
"duration_ms": 0.454,
"host": "192.168.1.103",
"version": "v2.3.2"
}
}
|