-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathict_bindings.cpp
More file actions
278 lines (197 loc) · 8.89 KB
/
ict_bindings.cpp
File metadata and controls
278 lines (197 loc) · 8.89 KB
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/*
Permission is hereby granted, perpetual, worldwide, non-exclusive, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1. The Software cannot be used in any form or in any substantial portions for development, maintenance and for any other purposes, in the military sphere and in relation to military products, including, but not limited to:
a. any kind of armored force vehicles, missile weapons, warships, artillery weapons, air military vehicles (including military aircrafts, combat helicopters, military drones aircrafts), air defense systems, rifle armaments, small arms, firearms and side arms, melee weapons, chemical weapons, weapons of mass destruction;
b. any special software for development technical documentation for military purposes;
c. any special equipment for tests of prototypes of any subjects with military purpose of use;
d. any means of protection for conduction of acts of a military nature;
e. any software or hardware for determining strategies, reconnaissance, troop positioning, conducting military actions, conducting special operations;
f. any dual-use products with possibility to use the product in military purposes;
g. any other products, software or services connected to military activities;
h. any auxiliary means related to abovementioned spheres and products.
2. The Software cannot be used as described herein in any connection to the military activities. A person, a company, or any other entity, which wants to use the Software, shall take all reasonable actions to make sure that the purpose of use of the Software cannot be possibly connected to military purposes.
3. The Software cannot be used by a person, a company, or any other entity, activities of which are connected to military sphere in any means. If a person, a company, or any other entity, during the period of time for the usage of Software, would engage in activities, connected to military purposes, such person, company, or any other entity shall immediately stop the usage of Software and any its modifications or alterations.
4. Abovementioned restrictions should apply to all modification, alteration, merge, and to other actions, related to the Software, regardless of how the Software was changed due to the abovementioned actions.
The above copyright notice and this permission notice shall be included in all copies or substantial portions, modifications and alterations of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <emscripten.h>
#include <cstdlib>
#include <iostream>
#include <string.h>
#include "transaction.h"
#define FRAME_LENGTH TRANSACTION_LENGTH
#include "ict.h"
using std::memcpy;
extern "C" {
IcT ict = IcT();
// Converter
void to_trytes(
const int8_t *trits,
const size_t length,
char *trytes)
{
trits_to_trytes(trits, length, trytes);
trytes[length / 3] = '\0';
}
void to_trits(
const char *trytes,
const size_t length,
int8_t *trits)
{
trytes_to_trits(trytes, length, trits);
}
void int64_to_trits(
const int64_t int64,
int8_t *trits,
size_t offset,
const size_t length)
{
int_to_trits(int64, trits, offset, length);
}
void trits_to_int64(
const int8_t *trits,
const size_t length,
int64_t *int64)
{
*int64 = trits_to_int(trits, length);
}
// Curl
void get_digest(
const int8_t *message,
size_t message_length,
int8_t *digest)
{
ict.curl.get_digest(message, 0, message_length, digest, 0);
}
// ISS
void generate_address(
const int8_t *seed,
int64_t *index,
const int8_t security,
int8_t *key,
int8_t *address)
{
ict.iss.generate_address(seed, index, security, key, address);
}
void generate_signature(
const int8_t *bundle,
const int8_t *key,
const int8_t security,
int8_t *signature_fragments)
{
ict.iss.generate_signature(bundle, key, security, signature_fragments);
}
bool verify_signature(
const int8_t *expected_address,
const int8_t *bundle,
const int8_t *signature_fragments,
const int8_t security)
{
int8_t actual_address[HASH_LENGTH];
return ict.iss.verify_signature(expected_address, bundle, signature_fragments, security, actual_address);
}
// MSS
void generate_merkle_tree(
const int8_t *seed,
int64_t *index,
const int8_t security)
{
ict.mss.generate_merkle_tree(seed, index, security);
}
void generate_merkle_signature(
const int8_t *bundle,
const int8_t *seed,
int8_t *signature_fragments)
{
ict.mss.generate_merkle_signature(bundle, seed, signature_fragments);
}
void regenerate_merkle_tree(
const int8_t *seed,
int64_t *index)
{
ict.mss.regenerate_merkle_tree(seed, index);
}
bool get_merkle_path(
int8_t* siblings)
{
return ict.mss.get_merkle_path(siblings);
}
void get_merkle_root(
const size_t leaf_index,
const int8_t *hash,
const int8_t *siblings,
const size_t depth,
int8_t *root)
{
ict.mss.get_merkle_root(leaf_index, hash, siblings, depth, root);
}
bool verify_merkle_signature(
const int8_t *root,
const int8_t *bundle,
const int8_t *signature_fragments,
const size_t leaf_index,
int8_t *siblings,
const size_t depth,
const int8_t security_level)
{
return ict.mss.verify_merkle_signature(root, bundle, signature_fragments, leaf_index, siblings, depth, security_level);
}
void get_root_address(
int8_t *root)
{
memcpy(root, ict.mss.root, HASH_LENGTH);
}
// ICT node
void transmit_frame(
uint8_t *data,
size_t length)
{
EM_ASM({
if (Module.transmitFrame) {
Module.transmitFrame($0, $1);
}
}, data, length);
}
void init()
{
ict = IcT();
ict.transmitter.packet_reception_time_ms = 200;
ict.transmitter.transmit_frame = transmit_frame;
}
// Bundle construction
int8_t* bundle_transaction(
const TransactionDescription *transaction_description,
const ValidationLevel type)
{
return ict.ixi.bundle_transaction(transaction_description, type);
}
void finalize_bundle(
const int8_t security_level,
int8_t *bundle)
{
ict.ixi.finalize_bundle(security_level, bundle);
}
void set_message_or_signature(
const int8_t *signature,
const int8_t security_level,
const size_t offset)
{
ict.ixi.set_message_or_signature(signature, security_level, offset);
}
void set_tag(
const int8_t *tag,
const size_t offset)
{
ict.ixi.set_tag(tag, offset);
}
void entangle(
const int8_t *trunk_transaction,
const int8_t *branch_transaction,
const int8_t security_level,
int8_t *transactions_copy,
int8_t *digests)
{
ict.ixi.entangle(trunk_transaction, branch_transaction, security_level, transactions_copy, digests);
}
}