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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
|
/*
* (C) 2015 Jack Lloyd
* (C) 2016 Daniel Neus, Rohde & Schwarz Cybersecurity
* (C) 2017 René Korthaus, Rohde & Schwarz Cybersecurity
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#define BOTAN_NO_DEPRECATED_WARNINGS
#include "tests.h"
#include <functional>
#include <ctime>
#include <botan/loadstor.h>
#include <botan/calendar.h>
#include <botan/internal/rounding.h>
#include <botan/internal/ct_utils.h>
#include <botan/charset.h>
#include <botan/parsing.h>
#if defined(BOTAN_HAS_BASE64_CODEC)
#include <botan/base64.h>
#endif
#if defined(BOTAN_HAS_POLY_DBL)
#include <botan/internal/poly_dbl.h>
#endif
namespace Botan_Tests {
namespace {
class Utility_Function_Tests final : public Text_Based_Test
{
public:
Utility_Function_Tests() : Text_Based_Test("util.vec", "In1,In2,Out") {}
Test::Result run_one_test(const std::string& algo, const VarMap& vars) override
{
Test::Result result("Util " + algo);
if(algo == "round_up")
{
const size_t x = get_req_sz(vars, "In1");
const size_t to = get_req_sz(vars, "In2");
result.test_eq(algo, Botan::round_up(x, to), get_req_sz(vars, "Out"));
try
{
Botan::round_up(x, 0);
result.test_failure("round_up did not reject invalid input");
}
catch(std::exception) {}
}
else if(algo == "round_down")
{
const size_t x = get_req_sz(vars, "In1");
const size_t to = get_req_sz(vars, "In2");
result.test_eq(algo, Botan::round_down<size_t>(x, to), get_req_sz(vars, "Out"));
result.test_eq(algo, Botan::round_down<size_t>(x, 0), x);
}
return result;
}
std::vector<Test::Result> run_final_tests() override
{
std::vector<Test::Result> results;
results.push_back(test_loadstore());
results.push_back(test_ct_utils());
return results;
}
Test::Result test_ct_utils()
{
Test::Result result("CT utils");
result.test_eq_sz("CT::is_zero8", Botan::CT::is_zero<uint8_t>(0), 0xFF);
result.test_eq_sz("CT::is_zero8", Botan::CT::is_zero<uint8_t>(1), 0x00);
result.test_eq_sz("CT::is_zero8", Botan::CT::is_zero<uint8_t>(0xFF), 0x00);
result.test_eq_sz("CT::is_zero16", Botan::CT::is_zero<uint16_t>(0), 0xFFFF);
result.test_eq_sz("CT::is_zero16", Botan::CT::is_zero<uint16_t>(1), 0x0000);
result.test_eq_sz("CT::is_zero16", Botan::CT::is_zero<uint16_t>(0xFF), 0x0000);
result.test_eq_sz("CT::is_zero32", Botan::CT::is_zero<uint32_t>(0), 0xFFFFFFFF);
result.test_eq_sz("CT::is_zero32", Botan::CT::is_zero<uint32_t>(1), 0x00000000);
result.test_eq_sz("CT::is_zero32", Botan::CT::is_zero<uint32_t>(0xFF), 0x00000000);
result.test_eq_sz("CT::is_less8", Botan::CT::is_less<uint8_t>(0, 1), 0xFF);
result.test_eq_sz("CT::is_less8", Botan::CT::is_less<uint8_t>(1, 0), 0x00);
result.test_eq_sz("CT::is_less8", Botan::CT::is_less<uint8_t>(0xFF, 5), 0x00);
result.test_eq_sz("CT::is_less16", Botan::CT::is_less<uint16_t>(0, 1), 0xFFFF);
result.test_eq_sz("CT::is_less16", Botan::CT::is_less<uint16_t>(1, 0), 0x0000);
result.test_eq_sz("CT::is_less16", Botan::CT::is_less<uint16_t>(0xFFFF, 5), 0x0000);
result.test_eq_sz("CT::is_less32", Botan::CT::is_less<uint32_t>(0, 1), 0xFFFFFFFF);
result.test_eq_sz("CT::is_less32", Botan::CT::is_less<uint32_t>(1, 0), 0x00000000);
result.test_eq_sz("CT::is_less32", Botan::CT::is_less<uint32_t>(0xFFFF5, 5), 0x00000000);
result.test_eq_sz("CT::is_less32", Botan::CT::is_less<uint32_t>(0xFFFFFFFF, 5), 0x00000000);
result.test_eq_sz("CT::is_less32", Botan::CT::is_less<uint32_t>(5, 0xFFFFFFFF), 0xFFFFFFFF);
return result;
}
Test::Result test_loadstore()
{
Test::Result result("Util load/store");
const std::vector<uint8_t> membuf =
Botan::hex_decode("00112233445566778899AABBCCDDEEFF");
const uint8_t* mem = membuf.data();
const uint16_t in16 = 0x1234;
const uint32_t in32 = 0xA0B0C0D0;
const uint64_t in64 = 0xABCDEF0123456789;
result.test_is_eq<uint8_t>(Botan::get_byte(0, in32), 0xA0);
result.test_is_eq<uint8_t>(Botan::get_byte(1, in32), 0xB0);
result.test_is_eq<uint8_t>(Botan::get_byte(2, in32), 0xC0);
result.test_is_eq<uint8_t>(Botan::get_byte(3, in32), 0xD0);
result.test_is_eq<uint16_t>(Botan::make_uint16(0xAA, 0xBB), 0xAABB);
result.test_is_eq<uint32_t>(Botan::make_uint32(0x01, 0x02, 0x03, 0x04), 0x01020304);
result.test_is_eq<uint16_t>(Botan::load_be<uint16_t>(mem, 0), 0x0011);
result.test_is_eq<uint16_t>(Botan::load_be<uint16_t>(mem, 1), 0x2233);
result.test_is_eq<uint16_t>(Botan::load_be<uint16_t>(mem, 2), 0x4455);
result.test_is_eq<uint16_t>(Botan::load_be<uint16_t>(mem, 3), 0x6677);
result.test_is_eq<uint16_t>(Botan::load_le<uint16_t>(mem, 0), 0x1100);
result.test_is_eq<uint16_t>(Botan::load_le<uint16_t>(mem, 1), 0x3322);
result.test_is_eq<uint16_t>(Botan::load_le<uint16_t>(mem, 2), 0x5544);
result.test_is_eq<uint16_t>(Botan::load_le<uint16_t>(mem, 3), 0x7766);
result.test_is_eq<uint32_t>(Botan::load_be<uint32_t>(mem, 0), 0x00112233);
result.test_is_eq<uint32_t>(Botan::load_be<uint32_t>(mem, 1), 0x44556677);
result.test_is_eq<uint32_t>(Botan::load_be<uint32_t>(mem, 2), 0x8899AABB);
result.test_is_eq<uint32_t>(Botan::load_be<uint32_t>(mem, 3), 0xCCDDEEFF);
result.test_is_eq<uint32_t>(Botan::load_le<uint32_t>(mem, 0), 0x33221100);
result.test_is_eq<uint32_t>(Botan::load_le<uint32_t>(mem, 1), 0x77665544);
result.test_is_eq<uint32_t>(Botan::load_le<uint32_t>(mem, 2), 0xBBAA9988);
result.test_is_eq<uint32_t>(Botan::load_le<uint32_t>(mem, 3), 0xFFEEDDCC);
result.test_is_eq<uint64_t>(Botan::load_be<uint64_t>(mem, 0), 0x0011223344556677);
result.test_is_eq<uint64_t>(Botan::load_be<uint64_t>(mem, 1), 0x8899AABBCCDDEEFF);
result.test_is_eq<uint64_t>(Botan::load_le<uint64_t>(mem, 0), 0x7766554433221100);
result.test_is_eq<uint64_t>(Botan::load_le<uint64_t>(mem, 1), 0xFFEEDDCCBBAA9988);
// Check misaligned loads:
result.test_is_eq<uint16_t>(Botan::load_be<uint16_t>(mem + 1, 0), 0x1122);
result.test_is_eq<uint16_t>(Botan::load_le<uint16_t>(mem + 3, 0), 0x4433);
result.test_is_eq<uint32_t>(Botan::load_be<uint32_t>(mem + 1, 1), 0x55667788);
result.test_is_eq<uint32_t>(Botan::load_le<uint32_t>(mem + 3, 1), 0xAA998877);
result.test_is_eq<uint64_t>(Botan::load_be<uint64_t>(mem + 1, 0), 0x1122334455667788);
result.test_is_eq<uint64_t>(Botan::load_le<uint64_t>(mem + 7, 0), 0xEEDDCCBBAA998877);
result.test_is_eq<uint64_t>(Botan::load_le<uint64_t>(mem + 5, 0), 0xCCBBAA9988776655);
uint8_t outbuf[16] = { 0 };
for(size_t offset = 0; offset != 7; ++offset)
{
uint8_t* out = outbuf + offset;
Botan::store_be(in16, out);
result.test_is_eq<uint8_t>(out[0], 0x12);
result.test_is_eq<uint8_t>(out[1], 0x34);
Botan::store_le(in16, out);
result.test_is_eq<uint8_t>(out[0], 0x34);
result.test_is_eq<uint8_t>(out[1], 0x12);
Botan::store_be(in32, out);
result.test_is_eq<uint8_t>(out[0], 0xA0);
result.test_is_eq<uint8_t>(out[1], 0xB0);
result.test_is_eq<uint8_t>(out[2], 0xC0);
result.test_is_eq<uint8_t>(out[3], 0xD0);
Botan::store_le(in32, out);
result.test_is_eq<uint8_t>(out[0], 0xD0);
result.test_is_eq<uint8_t>(out[1], 0xC0);
result.test_is_eq<uint8_t>(out[2], 0xB0);
result.test_is_eq<uint8_t>(out[3], 0xA0);
Botan::store_be(in64, out);
result.test_is_eq<uint8_t>(out[0], 0xAB);
result.test_is_eq<uint8_t>(out[1], 0xCD);
result.test_is_eq<uint8_t>(out[2], 0xEF);
result.test_is_eq<uint8_t>(out[3], 0x01);
result.test_is_eq<uint8_t>(out[4], 0x23);
result.test_is_eq<uint8_t>(out[5], 0x45);
result.test_is_eq<uint8_t>(out[6], 0x67);
result.test_is_eq<uint8_t>(out[7], 0x89);
Botan::store_le(in64, out);
result.test_is_eq<uint8_t>(out[0], 0x89);
result.test_is_eq<uint8_t>(out[1], 0x67);
result.test_is_eq<uint8_t>(out[2], 0x45);
result.test_is_eq<uint8_t>(out[3], 0x23);
result.test_is_eq<uint8_t>(out[4], 0x01);
result.test_is_eq<uint8_t>(out[5], 0xEF);
result.test_is_eq<uint8_t>(out[6], 0xCD);
result.test_is_eq<uint8_t>(out[7], 0xAB);
}
return result;
}
};
BOTAN_REGISTER_TEST("util", Utility_Function_Tests);
#if defined(BOTAN_HAS_POLY_DBL)
class Poly_Double_Tests final : public Text_Based_Test
{
public:
Poly_Double_Tests() : Text_Based_Test("poly_dbl.vec", "In,Out") {}
Test::Result run_one_test(const std::string&, const VarMap& vars) override
{
Test::Result result("Polynomial doubling");
const std::vector<uint8_t> in = get_req_bin(vars, "In");
const std::vector<uint8_t> out = get_req_bin(vars, "Out");
std::vector<uint8_t> b = in;
Botan::poly_double_n(b.data(), b.size());
result.test_eq("Expected value", b, out);
return result;
}
};
BOTAN_REGISTER_TEST("poly_dbl", Poly_Double_Tests);
#endif
class Date_Format_Tests final : public Text_Based_Test
{
public:
Date_Format_Tests() : Text_Based_Test("dates.vec", "Date") {}
std::vector<uint32_t> parse_date(const std::string& s)
{
const std::vector<std::string> parts = Botan::split_on(s, ',');
if(parts.size() != 6)
{
throw Test_Error("Bad date format '" + s + "'");
}
std::vector<uint32_t> u32s;
for(auto const& sub : parts)
{
u32s.push_back(Botan::to_u32bit(sub));
}
return u32s;
}
Test::Result run_one_test(const std::string& type, const VarMap& vars) override
{
const std::string date_str = get_req_str(vars, "Date");
Test::Result result("Date parsing");
const std::vector<uint32_t> d = parse_date(date_str);
if(type == "valid" || type == "valid.not_std" || type == "valid.64_bit_time_t")
{
Botan::calendar_point c(d[0], d[1], d[2], d[3], d[4], d[5]);
result.test_is_eq(date_str + " year", c.get_year(), d[0]);
result.test_is_eq(date_str + " month", c.get_month(), d[1]);
result.test_is_eq(date_str + " day", c.get_day(), d[2]);
result.test_is_eq(date_str + " hour", c.get_hour(), d[3]);
result.test_is_eq(date_str + " minute", c.get_minutes(), d[4]);
result.test_is_eq(date_str + " second", c.get_seconds(), d[5]);
if(type == "valid.not_std" || (type == "valid.64_bit_time_t" && c.get_year() > 2037 && sizeof(std::time_t) == 4))
{
result.test_throws("valid but out of std::timepoint range", [c]() { c.to_std_timepoint(); });
}
else
{
Botan::calendar_point c2 = Botan::calendar_value(c.to_std_timepoint());
result.test_is_eq(date_str + " year", c2.get_year(), d[0]);
result.test_is_eq(date_str + " month", c2.get_month(), d[1]);
result.test_is_eq(date_str + " day", c2.get_day(), d[2]);
result.test_is_eq(date_str + " hour", c2.get_hour(), d[3]);
result.test_is_eq(date_str + " minute", c2.get_minutes(), d[4]);
result.test_is_eq(date_str + " second", c2.get_seconds(), d[5]);
}
}
else if(type == "invalid")
{
result.test_throws("invalid date", [d]() { Botan::calendar_point c(d[0], d[1], d[2], d[3], d[4], d[5]); });
}
else
{
throw Test_Error("Unexpected header '" + type + "' in date format tests");
}
return result;
}
std::vector<Test::Result> run_final_tests() override
{
Test::Result result("calendar_point::to_string");
Botan::calendar_point d(2008, 5, 15, 9, 30, 33);
// desired format: <YYYY>-<MM>-<dd>T<HH>:<mm>:<ss>
result.test_eq("calendar_point::to_string", d.to_string(), "2008-05-15T09:30:33");
return {result};
}
};
BOTAN_REGISTER_TEST("util_dates", Date_Format_Tests);
#if defined(BOTAN_HAS_BASE64_CODEC)
class Base64_Tests final : public Text_Based_Test
{
public:
Base64_Tests() : Text_Based_Test("base64.vec", "Base64", "Binary") {}
Test::Result run_one_test(const std::string& type, const VarMap& vars) override
{
Test::Result result("Base64");
const bool is_valid = (type == "valid");
const std::string base64 = get_req_str(vars, "Base64");
try
{
if(is_valid)
{
const std::vector<uint8_t> binary = get_req_bin(vars, "Binary");
result.test_eq("base64 decoding", Botan::base64_decode(base64), binary);
result.test_eq("base64 encoding", Botan::base64_encode(binary), base64);
}
else
{
auto res = Botan::base64_decode(base64);
result.test_failure("decoded invalid base64 to " + Botan::hex_encode(res));
}
}
catch(std::exception& e)
{
if(is_valid)
{
result.test_failure("rejected valid base64", e.what());
}
else
{
result.test_note("rejected invalid base64");
}
}
return result;
}
std::vector<Test::Result> run_final_tests() override
{
Test::Result result("Base64");
const std::string valid_b64 = "Zg==";
for(char ws_char : { ' ', '\t', '\r', '\n' })
{
for(size_t i = 0; i <= valid_b64.size(); ++i)
{
std::string b64_ws = valid_b64;
b64_ws.insert(i, 1, ws_char);
try
{
result.test_failure("decoded whitespace base64", Botan::base64_decode(b64_ws, false));
}
catch(std::exception&) {}
try
{
result.test_eq("base64 decoding with whitespace", Botan::base64_decode(b64_ws, true), "66");
}
catch(std::exception& e)
{
result.test_failure(b64_ws, e.what());
}
}
}
return {result};
}
};
BOTAN_REGISTER_TEST("base64", Base64_Tests);
#endif
class Charset_Tests final : public Text_Based_Test
{
public:
Charset_Tests() : Text_Based_Test("charset.vec", "In,Out") {}
Test::Result run_one_test(const std::string& type, const VarMap& vars) override
{
Test::Result result("Charset");
const std::vector<uint8_t> in = get_req_bin(vars, "In");
const std::vector<uint8_t> expected = get_req_bin(vars, "Out");
const std::string in_str(in.begin(), in.end());
std::string converted;
if(type == "UCS2-UTF8")
{
converted = Botan::ucs2_to_utf8(in.data(), in.size());
}
else if(type == "UCS4-UTF8")
{
converted = Botan::ucs4_to_utf8(in.data(), in.size());
}
else if(type == "UTF8-LATIN1")
{
converted = Botan::utf8_to_latin1(in_str);
}
else if(type == "UTF16-LATIN1")
{
converted = Botan::Charset::transcode(in_str,
Botan::Character_Set::LATIN1_CHARSET,
Botan::Character_Set::UCS2_CHARSET);
}
else if(type == "LATIN1-UTF8")
{
converted = Botan::Charset::transcode(in_str,
Botan::Character_Set::UTF8_CHARSET,
Botan::Character_Set::LATIN1_CHARSET);
}
else
{
throw Test_Error("Unexpected header '" + type + "' in charset tests");
}
result.test_eq("string converted successfully", std::vector<uint8_t>(converted.begin(), converted.end()), expected);
return result;
}
Test::Result utf16_to_latin1_negative_tests()
{
Test::Result result("Charset negative tests");
result.test_throws("conversion fails for non-Latin1 characters", []()
{
// "abcdefŸabcdef"
std::vector<uint8_t> input = { 0x00, 0x61, 0x00, 0x62, 0x00, 0x63, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, 0x01,
0x78, 0x00, 0x61, 0x00, 0x62, 0x00, 0x63, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66
};
Botan::Charset::transcode(std::string(input.begin(), input.end()),
Botan::Character_Set::LATIN1_CHARSET,
Botan::Character_Set::UCS2_CHARSET);
});
result.test_throws("conversion fails for UTF16 string with odd number of bytes", []()
{
std::vector<uint8_t> input = { 0x00, 0x61, 0x00 };
Botan::Charset::transcode(std::string(input.begin(), input.end()),
Botan::Character_Set::LATIN1_CHARSET,
Botan::Character_Set::UCS2_CHARSET);
});
return result;
}
Test::Result utf8_to_latin1_negative_tests()
{
Test::Result result("Charset negative tests");
result.test_throws("conversion fails for non-Latin1 characters", []()
{
// "abcdefŸabcdef"
const std::vector<uint8_t> input = {
0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0xC5,
0xB8, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66
};
Botan::utf8_to_latin1(std::string(input.begin(), input.end()));
});
result.test_throws("invalid utf-8 string", []()
{
// sequence truncated
const std::vector<uint8_t> input = { 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0xC5 };
Botan::utf8_to_latin1(std::string(input.begin(), input.end()));
});
result.test_throws("invalid utf-8 string", []()
{
std::vector<uint8_t> input = { 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0xC8, 0xB8, 0x61 };
Botan::utf8_to_latin1(std::string(input.begin(), input.end()));
});
return result;
}
std::vector<Test::Result> run_final_tests() override
{
Test::Result result("Charset negative tests");
result.merge(utf16_to_latin1_negative_tests());
result.merge(utf8_to_latin1_negative_tests());
return{ result };
}
};
BOTAN_REGISTER_TEST("charset", Charset_Tests);
class Hostname_Tests final : public Text_Based_Test
{
public:
Hostname_Tests() : Text_Based_Test("hostnames.vec", "Issued,Hostname")
{}
Test::Result run_one_test(const std::string& type, const VarMap& vars) override
{
Test::Result result("Hostname");
const std::string issued = get_req_str(vars, "Issued");
const std::string hostname = get_req_str(vars, "Hostname");
const bool expected = (type == "Invalid") ? false : true;
const std::string what = hostname + ((expected == true) ?
" matches " : " does not match ") + issued;
result.test_eq(what, Botan::host_wildcard_match(issued, hostname), expected);
return result;
}
};
BOTAN_REGISTER_TEST("hostname", Hostname_Tests);
class CPUID_Tests final : public Test
{
public:
std::vector<Test::Result> run() override
{
Test::Result result("CPUID");
result.confirm("Endian is either little or big",
Botan::CPUID::is_big_endian() || Botan::CPUID::is_little_endian());
if(Botan::CPUID::is_little_endian())
{
result.test_eq("If endian is little, it is not also big endian", Botan::CPUID::is_big_endian(), false);
}
else
{
result.test_eq("If endian is big, it is not also little endian", Botan::CPUID::is_little_endian(), false);
}
const std::string cpuid_string = Botan::CPUID::to_string();
result.test_success("CPUID::to_string doesn't crash");
#if defined(BOTAN_TARGET_CPU_IS_X86_FAMILY)
if(Botan::CPUID::has_sse2())
{
result.confirm("Output string includes sse2", cpuid_string.find("sse2") != std::string::npos);
Botan::CPUID::clear_cpuid_bit(Botan::CPUID::CPUID_SSE2_BIT);
result.test_eq("After clearing cpuid bit, has_sse2 returns false", Botan::CPUID::has_sse2(), false);
Botan::CPUID::initialize(); // reset state
result.test_eq("After reinitializing, has_sse2 returns true", Botan::CPUID::has_sse2(), true);
}
#endif
return {result};
}
};
BOTAN_REGISTER_TEST("cpuid", CPUID_Tests);
}
}
|