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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
use ;
use CallToolResult;
use JsonSchema;
use Deserialize;
use json;
use HashMap;
use crate;
use crateMcpTool;
/*#[cfg(test)]
mod tests {
use super::*;
use clap::Parser;
use crate::service::crypto_service::CryptoService;
use actix_web::web::Data;
use blsttc::SecretKey;
use base64::Engine;
#[tokio::test]
async fn test_verify_signatures_tool() {
let secret_key = SecretKey::random();
let public_key = hex::encode(secret_key.public_key().to_bytes());
let data = b"test data";
let data_hex = hex::encode(data);
let signature = hex::encode(secret_key.sign(data).to_bytes());
let ant_tp_config = crate::config::anttp_config::AntTpConfig::parse_from(&["anttp"]);
let crypto_service = Data::new(CryptoService::new(ant_tp_config));
let result = crypto_service.verify_map(public_key, {
let mut data_map = HashMap::new();
data_map.insert(data_hex.clone(), ServiceCrypto {
signature: Some(signature.clone()),
verified: None,
});
data_map
});
assert!(result.get(&data_hex).unwrap().verified.unwrap());
}
#[tokio::test]
async fn test_create_signatures_tool() {
let secret_key = SecretKey::random();
let app_private_key_hex = secret_key.to_hex();
let data_hex = hex::encode(b"hello world");
let ant_tp_config = crate::config::anttp_config::AntTpConfig::parse_from(&["anttp", "--app-private-key", &app_private_key_hex]);
let crypto_service = Data::new(CryptoService::new(ant_tp_config));
let result = crypto_service.sign_map({
let mut data_map = HashMap::new();
data_map.insert(data_hex.clone(), ServiceCrypto {
signature: None,
verified: None,
});
data_map
});
assert!(result.get(&data_hex).unwrap().verified.unwrap());
assert!(result.get(&data_hex).unwrap().signature.is_some());
}
#[tokio::test]
async fn test_encrypt_tool() {
let secret_key = SecretKey::random();
let public_key = hex::encode(secret_key.public_key().to_bytes());
let data = b"hello world";
let data_base64 = base64::engine::general_purpose::STANDARD.encode(data);
let ant_tp_config = crate::config::anttp_config::AntTpConfig::parse_from(&["anttp"]);
let crypto_service = Data::new(CryptoService::new(ant_tp_config));
let result = crypto_service.encrypt_map(public_key, {
let mut data_map = HashMap::new();
data_map.insert(data_base64.clone(), ServiceCryptoContent {
content: None,
});
data_map
});
assert!(result.contains_key(&data_base64));
assert!(result.get(&data_base64).unwrap().content.is_some());
}
#[tokio::test]
async fn test_decrypt_tool() {
let secret_key = SecretKey::random();
let app_private_key_hex = secret_key.to_hex();
let data = b"hello world";
let encrypted_data = secret_key.public_key().encrypt(data).to_bytes();
let encrypted_data_base64 = base64::engine::general_purpose::STANDARD.encode(encrypted_data);
let ant_tp_config = crate::config::anttp_config::AntTpConfig::parse_from(&["anttp", "--app-private-key", &app_private_key_hex]);
let crypto_service = Data::new(CryptoService::new(ant_tp_config));
let result = crypto_service.decrypt_map({
let mut data_map = HashMap::new();
data_map.insert(encrypted_data_base64.clone(), ServiceCryptoContent {
content: None,
});
data_map
});
assert!(result.contains_key(&encrypted_data_base64));
let decrypted_base64 = result.get(&encrypted_data_base64).unwrap().content.as_ref().unwrap();
let decrypted_bytes = base64::engine::general_purpose::STANDARD.decode(decrypted_base64).unwrap();
assert_eq!(decrypted_bytes, data);
}
}
*/