mirrored from https://www.bouncycastle.org/repositories/bc-lts-java
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdebug.c
273 lines (261 loc) · 5.05 KB
/
debug.c
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
//
// Created on 31/5/2022.
//
#include "debug.h"
#include <stdio.h>
#include <emmintrin.h>
#include <string.h>
//#include <algorithm.h>
unsigned char *from_hex(unsigned char *str, size_t len) {
// if ((str.length() & 1) == 1) {
// throw
// std::invalid_argument("string not even number of chars long");
// }
unsigned char *out = malloc((sizeof(unsigned char)) * (len >> 1));
int t = 0;
for (size_t i = 0; i < len; ++i) {
unsigned char val = 0;
unsigned char v = str[i];
if (v >= '0' && v <= '9') {
val |= (v - '0');
} else if (v >= 'a' && v <= 'f') {
val |= (10 + (v - 'a'));
} else if (v >= 'A' && v <= 'F') {
val |= (10 + (v - 'A'));
}
val <<= 4;
i++;
v = str[i];
if (v >= '0' && v <= '9') {
val |= (v - '0');
} else if (v >= 'a' && v <= 'f') {
val |= (10 + (v - 'a'));
} else if (v >= 'A' && v <= 'F') {
val |= (10 + (v - 'A'));
}
out[t] = val;
t++;
}
return out;
}
//
//unsigned char *from_hex(std::string str, size_t
//
//&len) {
//
//if ((str.
//
//length()
//
//& 1) == 1) {
//throw std::invalid_argument(
//
//"string not even number of chars long");
//}
//
//auto out = new
//unsigned char[str.
//
//length()
//
/// 2];
//
//int t = 0;
//for (
//std::string::iterator it = str.begin();
//it != str.
//
//end();
//
//) {
//unsigned char val = 0;
//uint8_t v = *it;
//if (v >= '0' && v <= '9') {
//val |= (v - '0');
//} else if (v >= 'a' && v <= 'f') {
//val |= (10 + (v - 'a'));
//} else if (v >= 'A' && v <= 'F') {
//val |= (10 + (v - 'A'));
//}
//val <<= 4;
//it++;
//v = *it;
//if (v >= '0' && v <= '9') {
//val |= (v - '0');
//} else if (v >= 'a' && v <= 'f') {
//val |= (10 + (v - 'a'));
//} else if (v >= 'A' && v <= 'F') {
//val |= (10 + (v - 'A'));
//}
//it++;
//out[t] =
//val;
//t++;
//}
//
//len = t;
//return
//out;
//}
//
//__m512i fill512(int start) {
// unsigned char buf[64];
// for (int t = 0; t < 64; t++) {
// buf[t] = start + t;
// }
// return _mm512_loadu_si512(buf);
//}
//
//__m512i fromHex512(std::string str) {
// if (str.length() != 128) {
// throw
// "must be 128 characters";
// }
//
// auto b = from_hex(str);
//
// //std::reverse(b,b+64);
//
//
// auto v = _mm512_loadu_si512(b);
// delete b;
// return v;
//}
//
//__m256i fromHex256(std::string str) {
// if (str.length() != 64) {
// throw
// "must be 64 characters";
// }
//
// auto b = from_hex(str);
// //std::reverse(b,b+32);
// auto v = _mm256_loadu_si256(reinterpret_cast<const __m256i_u *>(b));
// delete b;
// return v;
//}
//
//__m128i fromHex128(std::string str) {
// if (str.length() != 32) {
// throw
// "must be 32 characters";
// }
// auto b = from_hex(str);
// //std::reverse(b,b+16);
// auto v = _mm_loadu_si128(reinterpret_cast<const __m128i_u *>(b));
// delete b;
// return v;
//}
//
//
void print_bytes(unsigned char *src, size_t len) {
while (len-- > 0) {
printf("%02X", *src);
// printf("%d, ", (*src > 127) ? *src- 256: *src);
src++;
}
printf("\n");
}
//
void print_bytes_128(__m128i *src) {
print_bytes((unsigned char *) (src), 16);
}
//
//void print_bytes(__m256i *src) {
// print_bytes(reinterpret_cast<unsigned char *>(src), 32);
//}
//
//void print_bytes(__m512i *src) {
// print_bytes(reinterpret_cast<unsigned char *>(src), 64);
//}
//
//
//void print_bytes(std::string txt, unsigned char *src, size_t len) {
// std::cout << txt << " ";
// while (len-- > 0) {
// printf("%02X", *src);
// src++;
// }
// std::cout << std::endl;
//}
//
//void print_bytes(std::string txt, __m128i *src) {
// std::cout << txt << " ";
// print_bytes(reinterpret_cast<unsigned char *>(src), 16);
//}
//
//void print_bytes(std::string txt, __m256i *src) {
// std::cout << txt << " ";
// print_bytes(reinterpret_cast<unsigned char *>(src), 32);
//}
//
//void print_bytes(std::string txt, __m512i *src) {
// std::cout << txt << " ";
// print_bytes(reinterpret_cast<unsigned char *>(src), 64);
//}
//
//
//LeLe::LeLe(std::string
//str) {
//
//if ((str.
//
//length()
//
//& 1) == 1) {
//throw std::invalid_argument(
//
//"string not even number of chars long");
//}
//
//size = str.length() / 8;
//if (str.
//
//length()
//
//% 8) {
//size += 1;
//}
//
//val = new
//uint32_t[size];
//memset(val,
//0, size * 4);
//
//size_t t = ((size * 4) - 1);
//
//
//for (
//std::string::iterator it = str.begin();
//it != str.
//
//end();
//
//) {
//unsigned char j = 0;
//uint8_t v = *it;
//if (v >= '0' && v <= '9') {
//j |= (v - '0');
//} else if (v >= 'a' && v <= 'f') {
//j |= (10 + (v - 'a'));
//} else if (v >= 'A' && v <= 'F') {
//j |= (10 + (v - 'A'));
//}
//j <<= 4;
//it++;
//v = *it;
//if (v >= '0' && v <= '9') {
//j |= (v - '0');
//} else if (v >= 'a' && v <= 'f') {
//j |= (10 + (v - 'a'));
//} else if (v >= 'A' && v <= 'F') {
//j |= (10 + (v - 'A'));
//}
//it++;
//((unsigned char *) val)[t] =
//j;
//t--;
//}
//
//
//}