• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

randombit / botan / 21753596263

06 Feb 2026 02:13PM UTC coverage: 90.063% (-0.01%) from 90.073%
21753596263

Pull #5289

github

web-flow
Merge 587099284 into 8ea0ca252
Pull Request #5289: Further misc header reductions, forward declarations, etc

102237 of 113517 relevant lines covered (90.06%)

11402137.11 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

95.56
/src/tests/test_utils.cpp
1
/*
2
* (C) 2015,2018,2024 Jack Lloyd
3
* (C) 2016 Daniel Neus, Rohde & Schwarz Cybersecurity
4
* (C) 2017 René Korthaus, Rohde & Schwarz Cybersecurity
5
*
6
* Botan is released under the Simplified BSD License (see license.txt)
7
*/
8

9
#include "tests.h"
10
#include <botan/hex.h>
11
#include <botan/rng.h>
12
#include <botan/version.h>
13
#include <botan/internal/bit_ops.h>
14
#include <botan/internal/calendar.h>
15
#include <botan/internal/charset.h>
16
#include <botan/internal/ct_utils.h>
17
#include <botan/internal/fmt.h>
18
#include <botan/internal/int_utils.h>
19
#include <botan/internal/loadstor.h>
20
#include <botan/internal/parsing.h>
21
#include <botan/internal/rounding.h>
22
#include <botan/internal/stl_util.h>
23
#include <botan/internal/target_info.h>
24

25
#include <bit>
26

27
#if defined(BOTAN_HAS_CPUID)
28
   #include <botan/internal/cpuid.h>
29
#endif
30

31
#if defined(BOTAN_HAS_POLY_DBL)
32
   #include <botan/internal/poly_dbl.h>
33
#endif
34

35
#if defined(BOTAN_HAS_UUID)
36
   #include <botan/uuid.h>
37
#endif
38

39
namespace Botan_Tests {
40

41
namespace {
42

43
class Utility_Function_Tests final : public Test {
1✔
44
   public:
45
      std::vector<Test::Result> run() override {
1✔
46
         std::vector<Test::Result> results;
1✔
47

48
         results.push_back(test_checked_add());
2✔
49
         results.push_back(test_checked_mul());
2✔
50
         results.push_back(test_checked_cast());
2✔
51
         results.push_back(test_round_up());
2✔
52
         results.push_back(test_loadstore());
2✔
53
         results.push_back(test_loadstore_ambiguity());
2✔
54
         results.push_back(test_loadstore_fallback());
2✔
55
         results.push_back(test_loadstore_constexpr());
2✔
56
         return Botan::concat(results, test_copy_out_be_le());
3✔
57
      }
1✔
58

59
   private:
60
      Test::Result test_checked_add() {
1✔
61
         Test::Result result("checked_add");
1✔
62

63
         const size_t large = static_cast<size_t>(-5);
1✔
64
         const size_t zero = 0;
1✔
65

66
         for(int si = -15; si != 15; ++si) {
31✔
67
            const size_t i = static_cast<size_t>(si);
30✔
68
            auto sum1 = Botan::checked_add<size_t>(i, zero, zero, zero, large);
30✔
69
            auto sum2 = Botan::checked_add<size_t>(large, zero, zero, zero, i);
30✔
70

71
            result.confirm("checked_add looks at all args", sum1 == sum2);
90✔
72

73
            if(i < 5) {
30✔
74
               result.test_eq("checked_add worked", sum1.value(), i + large);
10✔
75
            } else {
76
               result.confirm("checked_add did not return a result", !sum1.has_value());
50✔
77
            }
78
         }
79

80
         auto& rng = Test::rng();
1✔
81

82
         for(size_t i = 0; i != 100; ++i) {
101✔
83
            const uint16_t x = Botan::make_uint16(rng.next_byte(), rng.next_byte());
100✔
84
            const uint16_t y = Botan::make_uint16(rng.next_byte(), rng.next_byte());
100✔
85

86
            const uint32_t ref = static_cast<uint32_t>(x) + y;
100✔
87

88
            if(auto z = Botan::checked_add(x, y)) {
200✔
89
               result.test_int_eq("checked_add adds", z.value(), ref);
110✔
90
            } else {
91
               result.confirm("checked_add checks", (ref >> 16) > 0);
90✔
92
            }
93
         }
94

95
         return result;
1✔
96
      }
×
97

98
      Test::Result test_checked_mul() {
1✔
99
         Test::Result result("checked_mul");
1✔
100

101
         auto& rng = Test::rng();
1✔
102

103
         for(size_t i = 0; i != 100; ++i) {
101✔
104
            const uint16_t x = Botan::make_uint16(rng.next_byte(), rng.next_byte());
100✔
105
            const uint16_t y = Botan::make_uint16(rng.next_byte(), rng.next_byte());
100✔
106

107
            const uint32_t ref = static_cast<uint32_t>(x) * y;
100✔
108

109
            if(auto z = Botan::checked_mul(x, y)) {
200✔
110
               result.test_int_eq("checked_mul multiplies", z.value(), ref);
×
111
            } else {
112
               result.confirm("checked_mul checks", (ref >> 16) > 0);
200✔
113
            }
114
         }
115

116
         return result;
1✔
117
      }
×
118

119
      Test::Result test_checked_cast() {
1✔
120
         Test::Result result("checked_cast");
1✔
121

122
         const uint32_t large = static_cast<uint32_t>(-1);
1✔
123
         const uint32_t is_16_bits = 0x8123;
1✔
124
         const uint32_t is_8_bits = 0x89;
1✔
125

126
         result.test_throws("checked_cast checks", [&] { Botan::checked_cast_to<uint16_t>(large); });
3✔
127
         result.test_throws("checked_cast checks", [&] { Botan::checked_cast_to<uint8_t>(large); });
3✔
128

129
         result.test_int_eq("checked_cast converts", Botan::checked_cast_to<uint32_t>(large), large);
2✔
130
         result.test_int_eq("checked_cast converts", Botan::checked_cast_to<uint16_t>(is_16_bits), 0x8123);
2✔
131
         result.test_int_eq("checked_cast converts", Botan::checked_cast_to<uint8_t>(is_8_bits), 0x89);
2✔
132

133
         return result;
1✔
134
      }
×
135

136
      Test::Result test_round_up() {
1✔
137
         Test::Result result("Util round_up");
1✔
138

139
         // clang-format off
140
         const std::vector<size_t> inputs = {
1✔
141
            0, 1, 2, 3, 4, 9, 10, 32, 99, 100, 101, 255, 256, 1000, 10000,
142
            65535, 65536, 65537,
143
         };
1✔
144

145
         const std::vector<size_t> alignments = {
1✔
146
            1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 32, 50, 64, 100, 512, 521,
147
            1000, 1023, 1024, 1025, 10000, 65535, 65536
148
         };
1✔
149
         // clang-format on
150

151
         for(const size_t i : inputs) {
19✔
152
            for(const size_t m : alignments) {
450✔
153
               try {
432✔
154
                  const size_t z = Botan::round_up(i, m);
432✔
155

156
                  result.confirm("z % m == 0", z % m == 0);
864✔
157
                  result.confirm("z >= i", z >= i);
864✔
158
                  result.confirm("z <= i + m", z <= i + m);
864✔
159
               } catch(Botan::Exception& e) {
×
160
                  result.test_failure(Botan::fmt("round_up({},{})", i, m), e.what());
×
161
               }
×
162
            }
163
         }
164

165
         result.test_throws("Integer overflow is detected", []() { Botan::round_up(static_cast<size_t>(-1), 1024); });
2✔
166

167
         return result;
1✔
168
      }
1✔
169

170
      using TestInt64 = Botan::Strong<uint64_t, struct TestInt64_>;
171
      using TestInt32 = Botan::Strong<uint32_t, struct TestInt64_>;
172
      using TestVectorSink = Botan::Strong<std::vector<uint8_t>, struct TestVectorSink_>;
173

174
      enum class TestEnum64 : uint64_t {
175
         _1 = 0x1234567890ABCDEF,
176
         _2 = 0xEFCDAB9078563412,
177
      };
178

179
      enum class TestEnum32 : uint32_t {
180
         _1 = 0x12345678,
181
         _2 = 0x78563412,
182
      };
183

184
      static Test::Result test_loadstore() {
1✔
185
         Test::Result result("Util load/store");
1✔
186

187
         const std::vector<uint8_t> membuf = Botan::hex_decode("00112233445566778899AABBCCDDEEFF");
1✔
188
         const uint8_t* mem = membuf.data();
1✔
189

190
         const uint16_t in16 = 0x1234;
1✔
191
         const uint32_t in32 = 0xA0B0C0D0;
1✔
192
         const uint64_t in64 = 0xABCDEF0123456789;
1✔
193

194
         result.test_is_eq<uint8_t>(Botan::get_byte<0>(in32), 0xA0);
1✔
195
         result.test_is_eq<uint8_t>(Botan::get_byte<1>(in32), 0xB0);
1✔
196
         result.test_is_eq<uint8_t>(Botan::get_byte<2>(in32), 0xC0);
1✔
197
         result.test_is_eq<uint8_t>(Botan::get_byte<3>(in32), 0xD0);
1✔
198

199
         result.test_is_eq<uint16_t>(Botan::make_uint16(0xAA, 0xBB), 0xAABB);
1✔
200
         result.test_is_eq<uint32_t>(Botan::make_uint32(0x01, 0x02, 0x03, 0x04), 0x01020304);
1✔
201

202
         result.test_is_eq<uint16_t>(Botan::load_be<uint16_t>(mem, 0), 0x0011);
1✔
203
         result.test_is_eq<uint16_t>(Botan::load_be<uint16_t>(mem, 1), 0x2233);
1✔
204
         result.test_is_eq<uint16_t>(Botan::load_be<uint16_t>(mem, 2), 0x4455);
1✔
205
         result.test_is_eq<uint16_t>(Botan::load_be<uint16_t>(mem, 3), 0x6677);
1✔
206

207
         result.test_is_eq<uint16_t>(Botan::load_le<uint16_t>(mem, 0), 0x1100);
1✔
208
         result.test_is_eq<uint16_t>(Botan::load_le<uint16_t>(mem, 1), 0x3322);
1✔
209
         result.test_is_eq<uint16_t>(Botan::load_le<uint16_t>(mem, 2), 0x5544);
1✔
210
         result.test_is_eq<uint16_t>(Botan::load_le<uint16_t>(mem, 3), 0x7766);
1✔
211

212
         result.test_is_eq<uint32_t>(Botan::load_be<uint32_t>(mem, 0), 0x00112233);
1✔
213
         result.test_is_eq<uint32_t>(Botan::load_be<uint32_t>(mem, 1), 0x44556677);
1✔
214
         result.test_is_eq<uint32_t>(Botan::load_be<uint32_t>(mem, 2), 0x8899AABB);
1✔
215
         result.test_is_eq<uint32_t>(Botan::load_be<uint32_t>(mem, 3), 0xCCDDEEFF);
1✔
216

217
         result.test_is_eq<uint32_t>(Botan::load_le<uint32_t>(mem, 0), 0x33221100);
1✔
218
         result.test_is_eq<uint32_t>(Botan::load_le<uint32_t>(mem, 1), 0x77665544);
1✔
219
         result.test_is_eq<uint32_t>(Botan::load_le<uint32_t>(mem, 2), 0xBBAA9988);
1✔
220
         result.test_is_eq<uint32_t>(Botan::load_le<uint32_t>(mem, 3), 0xFFEEDDCC);
1✔
221

222
         result.test_is_eq<uint64_t>(Botan::load_be<uint64_t>(mem, 0), 0x0011223344556677);
1✔
223
         result.test_is_eq<uint64_t>(Botan::load_be<uint64_t>(mem, 1), 0x8899AABBCCDDEEFF);
1✔
224

225
         result.test_is_eq<uint64_t>(Botan::load_le<uint64_t>(mem, 0), 0x7766554433221100);
1✔
226
         result.test_is_eq<uint64_t>(Botan::load_le<uint64_t>(mem, 1), 0xFFEEDDCCBBAA9988);
1✔
227

228
         // Check misaligned loads:
229
         result.test_is_eq<uint16_t>(Botan::load_be<uint16_t>(mem + 1, 0), 0x1122);
1✔
230
         result.test_is_eq<uint16_t>(Botan::load_le<uint16_t>(mem + 3, 0), 0x4433);
1✔
231

232
         result.test_is_eq<uint32_t>(Botan::load_be<uint32_t>(mem + 1, 1), 0x55667788);
1✔
233
         result.test_is_eq<uint32_t>(Botan::load_le<uint32_t>(mem + 3, 1), 0xAA998877);
1✔
234

235
         result.test_is_eq<uint64_t>(Botan::load_be<uint64_t>(mem + 1, 0), 0x1122334455667788);
1✔
236
         result.test_is_eq<uint64_t>(Botan::load_le<uint64_t>(mem + 7, 0), 0xEEDDCCBBAA998877);
1✔
237
         result.test_is_eq<uint64_t>(Botan::load_le<uint64_t>(mem + 5, 0), 0xCCBBAA9988776655);
1✔
238

239
         uint8_t outbuf[16] = {0};
1✔
240

241
         for(size_t offset = 0; offset != 7; ++offset) {
8✔
242
            uint8_t* out = outbuf + offset;  // NOLINT(*-const-correctness) clang-tidy bug
7✔
243

244
            Botan::store_be(in16, out);
7✔
245
            result.test_is_eq<uint8_t>(out[0], 0x12);
7✔
246
            result.test_is_eq<uint8_t>(out[1], 0x34);
7✔
247

248
            Botan::store_le(in16, out);
7✔
249
            result.test_is_eq<uint8_t>(out[0], 0x34);
7✔
250
            result.test_is_eq<uint8_t>(out[1], 0x12);
7✔
251

252
            Botan::store_be(in32, out);
7✔
253
            result.test_is_eq<uint8_t>(out[0], 0xA0);
7✔
254
            result.test_is_eq<uint8_t>(out[1], 0xB0);
7✔
255
            result.test_is_eq<uint8_t>(out[2], 0xC0);
7✔
256
            result.test_is_eq<uint8_t>(out[3], 0xD0);
7✔
257

258
            Botan::store_le(in32, out);
7✔
259
            result.test_is_eq<uint8_t>(out[0], 0xD0);
7✔
260
            result.test_is_eq<uint8_t>(out[1], 0xC0);
7✔
261
            result.test_is_eq<uint8_t>(out[2], 0xB0);
7✔
262
            result.test_is_eq<uint8_t>(out[3], 0xA0);
7✔
263

264
            Botan::store_be(in64, out);
7✔
265
            result.test_is_eq<uint8_t>(out[0], 0xAB);
7✔
266
            result.test_is_eq<uint8_t>(out[1], 0xCD);
7✔
267
            result.test_is_eq<uint8_t>(out[2], 0xEF);
7✔
268
            result.test_is_eq<uint8_t>(out[3], 0x01);
7✔
269
            result.test_is_eq<uint8_t>(out[4], 0x23);
7✔
270
            result.test_is_eq<uint8_t>(out[5], 0x45);
7✔
271
            result.test_is_eq<uint8_t>(out[6], 0x67);
7✔
272
            result.test_is_eq<uint8_t>(out[7], 0x89);
7✔
273

274
            Botan::store_le(in64, out);
7✔
275
            result.test_is_eq<uint8_t>(out[0], 0x89);
7✔
276
            result.test_is_eq<uint8_t>(out[1], 0x67);
7✔
277
            result.test_is_eq<uint8_t>(out[2], 0x45);
7✔
278
            result.test_is_eq<uint8_t>(out[3], 0x23);
7✔
279
            result.test_is_eq<uint8_t>(out[4], 0x01);
7✔
280
            result.test_is_eq<uint8_t>(out[5], 0xEF);
7✔
281
            result.test_is_eq<uint8_t>(out[6], 0xCD);
7✔
282
            result.test_is_eq<uint8_t>(out[7], 0xAB);
7✔
283
         }
284

285
         std::array<uint8_t, 8> outarr{};
1✔
286
         uint16_t i0 = 0;
1✔
287
         uint16_t i1 = 0;
1✔
288
         uint16_t i2 = 0;
1✔
289
         uint16_t i3 = 0;
1✔
290
         Botan::store_be(in64, outarr);
1✔
291

292
         Botan::load_be(outarr, i0, i1, i2, i3);
1✔
293
         result.test_is_eq<uint16_t>(i0, 0xABCD);
1✔
294
         result.test_is_eq<uint16_t>(i1, 0xEF01);
1✔
295
         result.test_is_eq<uint16_t>(i2, 0x2345);
1✔
296
         result.test_is_eq<uint16_t>(i3, 0x6789);
1✔
297

298
         Botan::load_le(std::span{outarr}.first<6>(), i0, i1, i2);
1✔
299
         result.test_is_eq<uint16_t>(i0, 0xCDAB);
1✔
300
         result.test_is_eq<uint16_t>(i1, 0x01EF);
1✔
301
         result.test_is_eq<uint16_t>(i2, 0x4523);
1✔
302
         result.test_is_eq<uint16_t>(i3, 0x6789);  // remains unchanged
1✔
303

304
         Botan::store_le(in64, outarr);
1✔
305

306
         Botan::load_le(outarr, i0, i1, i2, i3);
1✔
307
         result.test_is_eq<uint16_t>(i0, 0x6789);
1✔
308
         result.test_is_eq<uint16_t>(i1, 0x2345);
1✔
309
         result.test_is_eq<uint16_t>(i2, 0xEF01);
1✔
310
         result.test_is_eq<uint16_t>(i3, 0xABCD);
1✔
311

312
         Botan::load_be(std::span{outarr}.first<6>(), i0, i1, i2);
1✔
313
         result.test_is_eq<uint16_t>(i0, 0x8967);
1✔
314
         result.test_is_eq<uint16_t>(i1, 0x4523);
1✔
315
         result.test_is_eq<uint16_t>(i2, 0x01EF);
1✔
316
         result.test_is_eq<uint16_t>(i3, 0xABCD);  // remains unchanged
1✔
317

318
         i0 = 0xAA11;
1✔
319
         i1 = 0xBB22;
1✔
320
         i2 = 0xCC33;
1✔
321
         i3 = 0xDD44;
1✔
322
         Botan::store_be(outarr, i0, i1, i2, i3);
1✔
323
         result.test_is_eq(outarr, {0xAA, 0x11, 0xBB, 0x22, 0xCC, 0x33, 0xDD, 0x44});
1✔
324
         std::vector<uint8_t> outvec(8);
1✔
325
         Botan::store_be(outvec, i0, i1, i2, i3);
1✔
326
         result.test_eq("store_be", outvec, "AA11BB22CC33DD44");
1✔
327

328
         Botan::store_le(outarr, i0, i1, i2, i3);
1✔
329
         result.test_is_eq(outarr, {0x11, 0xAA, 0x22, 0xBB, 0x33, 0xCC, 0x44, 0xDD});
1✔
330
         Botan::store_le(outvec, i0, i1, i2, i3);
1✔
331
         result.test_eq("store_le", outvec, "11AA22BB33CC44DD");
1✔
332

333
#if !defined(BOTAN_TERMINATE_ON_ASSERTS)
334
         std::vector<uint8_t> sink56bits(7);
335
         std::vector<uint8_t> sink72bits(9);
336
         result.test_throws("store_le with a buffer that is too small",
337
                            [&] { Botan::store_le(sink56bits, i0, i1, i2, i3); });
338
         result.test_throws("store_le with a buffer that is too big",
339
                            [&] { Botan::store_le(sink72bits, i0, i1, i2, i3); });
340
         result.test_throws("store_be with a buffer that is too small",
341
                            [&] { Botan::store_be(sink56bits, i0, i1, i2, i3); });
342
         result.test_throws("store_be with a buffer that is too big",
343
                            [&] { Botan::store_be(sink72bits, i0, i1, i2, i3); });
344
#endif
345

346
         // can store multiple values straight into a collection
347
         auto out64_array_be = Botan::store_be(i0, i1, i2, i3);
1✔
348
         auto out64_vec_be = Botan::store_be<std::vector<uint8_t>>(i0, i1, i2, i3);
1✔
349
         auto out64_strong_be = Botan::store_be<TestVectorSink>(i0, i1, i2, i3);
1✔
350
         result.test_is_eq(out64_array_be, {0xAA, 0x11, 0xBB, 0x22, 0xCC, 0x33, 0xDD, 0x44});
1✔
351
         result.test_eq("store_be(vec)", out64_vec_be, "AA11BB22CC33DD44");
1✔
352
         result.test_eq("store_be(strong)", out64_strong_be, "AA11BB22CC33DD44");
1✔
353
         auto out64_array_le = Botan::store_le(i0, i1, i2, i3);
1✔
354
         auto out64_vec_le = Botan::store_le<std::vector<uint8_t>>(i0, i1, i2, i3);
1✔
355
         auto out64_strong_le = Botan::store_le<TestVectorSink>(i0, i1, i2, i3);
1✔
356
         result.test_is_eq(out64_array_le, {0x11, 0xAA, 0x22, 0xBB, 0x33, 0xCC, 0x44, 0xDD});
1✔
357
         result.test_eq("store_le(vec)", out64_vec_le, "11AA22BB33CC44DD");
1✔
358
         result.test_eq("store_le(strong)", out64_strong_le, "11AA22BB33CC44DD");
1✔
359

360
         result.test_is_eq(in16, Botan::load_be(Botan::store_be(in16)));
1✔
361
         result.test_is_eq(in32, Botan::load_be(Botan::store_be(in32)));
1✔
362
         result.test_is_eq(in64, Botan::load_be(Botan::store_be(in64)));
1✔
363

364
         result.test_is_eq(in16, Botan::load_le(Botan::store_le(in16)));
1✔
365
         result.test_is_eq(in32, Botan::load_le(Botan::store_le(in32)));
1✔
366
         result.test_is_eq(in64, Botan::load_le(Botan::store_le(in64)));
1✔
367

368
         // Test that the runtime detects incompatible range sizes
369
#if !defined(BOTAN_TERMINATE_ON_ASSERTS)
370
         std::vector<uint16_t> too_big16(4);
371
         std::vector<uint16_t> too_small16(1);
372
         result.test_throws("load_le with incompatible buffers",
373
                            [&] { Botan::load_le(too_big16, Botan::hex_decode("BAADB00B")); });
374
         result.test_throws("load_le with incompatible buffers",
375
                            [&] { Botan::load_le(too_small16, Botan::hex_decode("BAADB00B")); });
376
         result.test_throws("load_be with incompatible buffers",
377
                            [&] { Botan::load_be(too_big16, Botan::hex_decode("BAADB00B")); });
378
         result.test_throws("load_be with incompatible buffers",
379
                            [&] { Botan::load_be(too_small16, Botan::hex_decode("BAADB00B")); });
380

381
         std::vector<uint8_t> too_big8(4);
382
         std::vector<uint8_t> too_small8(1);
383
         result.test_throws("store_le with incompatible buffers",
384
                            [&] { Botan::store_le(too_big8, std::array<uint16_t, 1>{}); });
385
         result.test_throws("store_le with incompatible buffers",
386
                            [&] { Botan::store_le(too_small8, std::array<uint16_t, 1>{}); });
387
         result.test_throws("store_be with incompatible buffers",
388
                            [&] { Botan::store_be(too_big8, std::array<uint16_t, 1>{}); });
389
         result.test_throws("store_be with incompatible buffers",
390
                            [&] { Botan::store_be(too_small8, std::array<uint16_t, 1>{}); });
391
#endif
392

393
         // Test store of entire ranges
394
         const std::array<uint16_t, 2> in16_array = {0x0A0B, 0x0C0D};
1✔
395
         result.test_eq("store_be(vec)", Botan::store_be<std::vector<uint8_t>>(in16_array), "0A0B0C0D");
2✔
396
         result.test_eq("store_le(vec)", Botan::store_le<std::vector<uint8_t>>(in16_array), "0B0A0D0C");
2✔
397

398
         const std::vector<uint16_t> in16_vector = {0x0A0B, 0x0C0D};
1✔
399
         result.test_eq("store_be(vec)", Botan::store_be<std::vector<uint8_t>>(in16_vector), "0A0B0C0D");
2✔
400
         result.test_eq("store_le(vec)", Botan::store_le<std::vector<uint8_t>>(in16_vector), "0B0A0D0C");
2✔
401

402
         std::array<uint8_t, 4> out_array{};
1✔
403
         Botan::store_be(out_array, in16_array);
1✔
404
         result.test_is_eq(out_array, std::array<uint8_t, 4>{0x0A, 0x0B, 0x0C, 0x0D});
1✔
405
         Botan::store_le(out_array, in16_array);
1✔
406
         result.test_is_eq(out_array, std::array<uint8_t, 4>{0x0B, 0x0A, 0x0D, 0x0C});
1✔
407

408
         const auto be_inferred = Botan::store_be(in16_array);
1✔
409
         result.test_is_eq(be_inferred, std::array<uint8_t, 4>{0x0A, 0x0B, 0x0C, 0x0D});
1✔
410
         const auto le_inferred = Botan::store_le(in16_array);
1✔
411
         result.test_is_eq(le_inferred, std::array<uint8_t, 4>{0x0B, 0x0A, 0x0D, 0x0C});
1✔
412

413
         // Test load of entire ranges
414
         const auto in_buffer = Botan::hex_decode("AABBCCDD");
1✔
415
         auto out16_array_be = Botan::load_be<std::array<uint16_t, 2>>(in_buffer);
1✔
416
         result.test_is_eq<uint16_t>(out16_array_be[0], 0xAABB);
1✔
417
         result.test_is_eq<uint16_t>(out16_array_be[1], 0xCCDD);
1✔
418
         auto out16_vec_be = Botan::load_be<std::vector<uint16_t>>(in_buffer);
1✔
419
         result.test_eq_sz("be-vector has expected size", out16_vec_be.size(), 2);
1✔
420
         result.test_is_eq<uint16_t>(out16_vec_be[0], 0xAABB);
1✔
421
         result.test_is_eq<uint16_t>(out16_vec_be[1], 0xCCDD);
1✔
422

423
         auto out16_array_le = Botan::load_le<std::array<uint16_t, 2>>(in_buffer);
1✔
424
         result.test_is_eq<uint16_t>(out16_array_le[0], 0xBBAA);
1✔
425
         result.test_is_eq<uint16_t>(out16_array_le[1], 0xDDCC);
1✔
426
         auto out16_vec_le = Botan::load_le<Botan::secure_vector<uint16_t>>(in_buffer);
1✔
427
         result.test_eq_sz("le-vector has expected size", out16_vec_be.size(), 2);
1✔
428
         result.test_is_eq<uint16_t>(out16_vec_le[0], 0xBBAA);
1✔
429
         result.test_is_eq<uint16_t>(out16_vec_le[1], 0xDDCC);
1✔
430

431
         // Test loading/storing of strong type integers
432
         const TestInt64 in64_strong{0xABCDEF0123456789};
1✔
433
         const TestInt32 in32_strong{0xABCDEF01};
1✔
434

435
         result.test_eq("store_be(u64,strong)", Botan::store_be<std::vector<uint8_t>>(in64_strong), "ABCDEF0123456789");
2✔
436
         result.test_eq("store_le(u64,strong)", Botan::store_le<std::vector<uint8_t>>(in64_strong), "8967452301EFCDAB");
2✔
437
         result.test_eq("store_be(u32,strong)", Botan::store_be<std::vector<uint8_t>>(in32_strong), "ABCDEF01");
2✔
438
         result.test_eq("store_le(u32,strong)", Botan::store_le<std::vector<uint8_t>>(in32_strong), "01EFCDAB");
2✔
439

440
         result.test_is_eq(Botan::load_be<TestInt64>(Botan::hex_decode("ABCDEF0123456789")), in64_strong);
2✔
441
         result.test_is_eq(Botan::load_le<TestInt64>(Botan::hex_decode("8967452301EFCDAB")), in64_strong);
2✔
442
         result.test_is_eq(Botan::load_be<TestInt32>(Botan::hex_decode("ABCDEF01")), in32_strong);
2✔
443
         result.test_is_eq(Botan::load_le<TestInt32>(Botan::hex_decode("01EFCDAB")), in32_strong);
2✔
444

445
         const std::vector<TestInt64> some_in64_strongs{TestInt64{0xABCDEF0123456789}, TestInt64{0x0123456789ABCDEF}};
1✔
446
         result.test_eq("store_be(vector,strong)",
2✔
447
                        Botan::store_be<std::vector<uint8_t>>(some_in64_strongs),
×
448
                        "ABCDEF01234567890123456789ABCDEF");
449
         result.test_eq("store_le(vector,strong)",
2✔
450
                        Botan::store_le<std::vector<uint8_t>>(some_in64_strongs),
×
451
                        "8967452301EFCDABEFCDAB8967452301");
452

453
         const auto in64_strongs_le =
1✔
454
            Botan::load_le<std::array<TestInt64, 2>>(Botan::hex_decode("8967452301EFCDABEFCDAB8967452301"));
2✔
455
         result.test_is_eq(in64_strongs_le[0], TestInt64{0xABCDEF0123456789});
1✔
456
         result.test_is_eq(in64_strongs_le[1], TestInt64{0x0123456789ABCDEF});
1✔
457

458
         const auto in64_strongs_be =
1✔
459
            Botan::load_be<std::vector<TestInt64>>(Botan::hex_decode("ABCDEF01234567890123456789ABCDEF"));
2✔
460
         result.test_is_eq(in64_strongs_be[0], TestInt64{0xABCDEF0123456789});
1✔
461
         result.test_is_eq(in64_strongs_be[1], TestInt64{0x0123456789ABCDEF});
1✔
462

463
         // Test loading/storing of enum types with different endianness
464
         const auto in64_enum_le = Botan::load_le<TestEnum64>(Botan::hex_decode("1234567890ABCDEF"));
2✔
465
         result.test_is_eq(in64_enum_le, TestEnum64::_2);
1✔
466
         const auto in64_enum_be = Botan::load_be<TestEnum64>(Botan::hex_decode("1234567890ABCDEF"));
2✔
467
         result.test_is_eq(in64_enum_be, TestEnum64::_1);
1✔
468
         result.test_eq("store_be(enum64)", Botan::store_le<std::vector<uint8_t>>(TestEnum64::_1), "EFCDAB9078563412");
2✔
469
         result.test_is_eq<std::array<uint8_t, 8>>(Botan::store_be(TestEnum64::_2),
1✔
470
                                                   {0xEF, 0xCD, 0xAB, 0x90, 0x78, 0x56, 0x34, 0x12});
471

472
         const auto in32_enum_le = Botan::load_le<TestEnum32>(Botan::hex_decode("78563412"));
2✔
473
         result.test_is_eq(in32_enum_le, TestEnum32::_1);
1✔
474
         const auto in32_enum_be = Botan::load_be<TestEnum32>(Botan::hex_decode("78563412"));
2✔
475
         result.test_is_eq(in32_enum_be, TestEnum32::_2);
1✔
476
         result.test_eq("store_le(enum32)", Botan::store_le<std::vector<uint8_t>>(TestEnum32::_1), "78563412");
2✔
477
         result.test_is_eq<std::array<uint8_t, 4>>(Botan::store_be(TestEnum32::_2), {0x78, 0x56, 0x34, 0x12});
1✔
478

479
         return result;
2✔
480
      }
11✔
481

482
      template <std::unsigned_integral T>
483
      static T fb_load_be(std::array<const uint8_t, sizeof(T)> in) {
3✔
484
         return Botan::detail::fallback_load_any<std::endian::big, T>(in);
3✔
485
      }
486

487
      template <std::unsigned_integral T>
488
      static T fb_load_le(std::array<const uint8_t, sizeof(T)> in) {
3✔
489
         return Botan::detail::fallback_load_any<std::endian::little, T>(in);
3✔
490
      }
491

492
      template <std::unsigned_integral T>
493
      static decltype(auto) fb_store_be(const T in) {
3✔
494
         std::array<uint8_t, sizeof(T)> out{};
3✔
495
         Botan::detail::fallback_store_any<std::endian::big, T>(in, out);
1✔
496
         return out;
2✔
497
      }
498

499
      template <std::unsigned_integral T>
500
      static decltype(auto) fb_store_le(const T in) {
3✔
501
         std::array<uint8_t, sizeof(T)> out{};
3✔
502
         Botan::detail::fallback_store_any<std::endian::little, T>(in, out);
1✔
503
         return out;
2✔
504
      }
505

506
      template <size_t N>
507
      using a = std::array<uint8_t, N>;
508

509
      static Test::Result test_loadstore_ambiguity() {
1✔
510
         // This is a regression test for a (probable) compiler bug in Xcode 15
511
         // where it would fail to compile the load/store functions for size_t
512
         //
513
         // It seems that this platform defines uint64_t as "unsigned long long"
514
         // and size_t as "unsigned long". Both are 64-bits but the compiler
515
         // was unable to disambiguate the two in reverse_bytes in bswap.h
516

517
         const uint32_t in32 = 0x01234567;
1✔
518
         const uint64_t in64 = 0x0123456789ABCDEF;
1✔
519
         const size_t inszt = 0x87654321;
1✔
520

521
         Test::Result result("Util load/store ambiguity");
1✔
522
         const auto out_be_32 = Botan::store_be(in32);
1✔
523
         const auto out_le_32 = Botan::store_le(in32);
1✔
524
         const auto out_be_64 = Botan::store_be(in64);
1✔
525
         const auto out_le_64 = Botan::store_le(in64);
1✔
526
         const auto out_be_szt = Botan::store_be(inszt);
1✔
527
         const auto out_le_szt = Botan::store_le(inszt);
1✔
528

529
         result.test_is_eq<uint32_t>("be 32", Botan::load_be<uint32_t>(out_be_32), in32);
1✔
530
         result.test_is_eq<uint32_t>("le 32", Botan::load_le<uint32_t>(out_le_32), in32);
1✔
531
         result.test_is_eq<uint64_t>("be 64", Botan::load_be<uint64_t>(out_be_64), in64);
1✔
532
         result.test_is_eq<uint64_t>("le 64", Botan::load_le<uint64_t>(out_le_64), in64);
1✔
533
         result.test_is_eq<size_t>("be szt", Botan::load_be<size_t>(out_be_szt), inszt);
1✔
534
         result.test_is_eq<size_t>("le szt", Botan::load_le<size_t>(out_le_szt), inszt);
1✔
535

536
         return result;
1✔
537
      }
×
538

539
      static Test::Result test_loadstore_fallback() {
1✔
540
         // The fallback implementation is only used if we don't know the
541
         // endianness of the target at compile time. This makes sure that the
542
         // fallback implementation is correct. On all typical platforms it
543
         // won't be called in production.
544
         Test::Result result("Util load/store fallback");
1✔
545

546
         result.test_is_eq<uint16_t>("lLE 16", fb_load_le<uint16_t>({1, 2}), 0x0201);
1✔
547
         result.test_is_eq<uint32_t>("lLE 32", fb_load_le<uint32_t>({1, 2, 3, 4}), 0x04030201);
1✔
548
         result.test_is_eq<uint64_t>("lLE 64", fb_load_le<uint64_t>({1, 2, 3, 4, 5, 6, 7, 8}), 0x0807060504030201);
1✔
549

550
         result.test_is_eq<uint16_t>("lBE 16", fb_load_be<uint16_t>({1, 2}), 0x0102);
1✔
551
         result.test_is_eq<uint32_t>("lBE 32", fb_load_be<uint32_t>({1, 2, 3, 4}), 0x01020304);
1✔
552
         result.test_is_eq<uint64_t>("lBE 64", fb_load_be<uint64_t>({1, 2, 3, 4, 5, 6, 7, 8}), 0x0102030405060708);
1✔
553

554
         result.test_is_eq<a<2>>("sLE 16", fb_store_le<uint16_t>(0x0201), {1, 2});
1✔
555
         result.test_is_eq<a<4>>("sLE 32", fb_store_le<uint32_t>(0x04030201), {1, 2, 3, 4});
1✔
556
         result.test_is_eq<a<8>>("sLE 64", fb_store_le<uint64_t>(0x0807060504030201), {1, 2, 3, 4, 5, 6, 7, 8});
1✔
557

558
         result.test_is_eq<a<2>>("sBE 16", fb_store_be<uint16_t>(0x0102), {1, 2});
1✔
559
         result.test_is_eq<a<4>>("sBE 32", fb_store_be<uint32_t>(0x01020304), {1, 2, 3, 4});
1✔
560
         result.test_is_eq<a<8>>("sBE 64", fb_store_be<uint64_t>(0x0102030405060708), {1, 2, 3, 4, 5, 6, 7, 8});
1✔
561

562
         return result;
1✔
563
      }
×
564

565
      static Test::Result test_loadstore_constexpr() {
1✔
566
         Test::Result result("Util load/store constexpr");
1✔
567

568
         constexpr uint16_t in16 = 0x1234;
1✔
569
         constexpr uint32_t in32 = 0xA0B0C0D0;
1✔
570
         constexpr uint64_t in64 = 0xABCDEF0123456789;
1✔
571

572
         // clang-format off
573
         constexpr std::array<uint8_t, 16> cex_mem = {
1✔
574
            0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF,
575
         };
576
         // clang-format on
577

578
         // get_byte<> w/ 16bit
579
         constexpr auto cex_byte_16_0 = Botan::get_byte<0>(in16);
1✔
580
         result.test_is_eq<uint8_t>(cex_byte_16_0, 0x12);
1✔
581
         constexpr auto cex_byte_16_1 = Botan::get_byte<1>(in16);
1✔
582
         result.test_is_eq<uint8_t>(cex_byte_16_1, 0x34);
1✔
583

584
         // get_byte<> w/ 32bit
585
         constexpr auto cex_byte_32_0 = Botan::get_byte<0>(in32);
1✔
586
         result.test_is_eq<uint8_t>(cex_byte_32_0, 0xA0);
1✔
587
         constexpr auto cex_byte_32_1 = Botan::get_byte<1>(in32);
1✔
588
         result.test_is_eq<uint8_t>(cex_byte_32_1, 0xB0);
1✔
589
         constexpr auto cex_byte_32_2 = Botan::get_byte<2>(in32);
1✔
590
         result.test_is_eq<uint8_t>(cex_byte_32_2, 0xC0);
1✔
591
         constexpr auto cex_byte_32_3 = Botan::get_byte<3>(in32);
1✔
592
         result.test_is_eq<uint8_t>(cex_byte_32_3, 0xD0);
1✔
593

594
         // get_byte<> w/ 64bit
595
         constexpr auto cex_byte_64_0 = Botan::get_byte<0>(in64);
1✔
596
         result.test_is_eq<uint8_t>(cex_byte_64_0, 0xAB);
1✔
597
         constexpr auto cex_byte_64_1 = Botan::get_byte<1>(in64);
1✔
598
         result.test_is_eq<uint8_t>(cex_byte_64_1, 0xCD);
1✔
599
         constexpr auto cex_byte_64_2 = Botan::get_byte<2>(in64);
1✔
600
         result.test_is_eq<uint8_t>(cex_byte_64_2, 0xEF);
1✔
601
         constexpr auto cex_byte_64_3 = Botan::get_byte<3>(in64);
1✔
602
         result.test_is_eq<uint8_t>(cex_byte_64_3, 0x01);
1✔
603
         constexpr auto cex_byte_64_4 = Botan::get_byte<4>(in64);
1✔
604
         result.test_is_eq<uint8_t>(cex_byte_64_4, 0x23);
1✔
605
         constexpr auto cex_byte_64_5 = Botan::get_byte<5>(in64);
1✔
606
         result.test_is_eq<uint8_t>(cex_byte_64_5, 0x45);
1✔
607
         constexpr auto cex_byte_64_6 = Botan::get_byte<6>(in64);
1✔
608
         result.test_is_eq<uint8_t>(cex_byte_64_6, 0x67);
1✔
609
         constexpr auto cex_byte_64_7 = Botan::get_byte<7>(in64);
1✔
610
         result.test_is_eq<uint8_t>(cex_byte_64_7, 0x89);
1✔
611

612
         // make_uintXX()
613
         constexpr auto cex_uint16_t = Botan::make_uint16(0x12, 0x34);
1✔
614
         result.test_is_eq<uint16_t>(cex_uint16_t, in16);
1✔
615
         constexpr auto cex_uint32_t = Botan::make_uint32(0xA0, 0xB0, 0xC0, 0xD0);
1✔
616
         result.test_is_eq<uint32_t>(cex_uint32_t, in32);
1✔
617
         constexpr auto cex_uint64_t = Botan::make_uint64(0xAB, 0xCD, 0xEF, 0x01, 0x23, 0x45, 0x67, 0x89);
1✔
618
         result.test_is_eq<uint64_t>(cex_uint64_t, in64);
1✔
619

620
         // store_le/be with a single integer
621
         constexpr std::array<uint8_t, 2> cex_store_le16 = Botan::store_le(in16);
1✔
622
         result.test_is_eq(cex_store_le16, std::array<uint8_t, 2>{0x34, 0x12});
1✔
623
         constexpr std::array<uint8_t, 4> cex_store_le32 = Botan::store_le(in32);
1✔
624
         result.test_is_eq(cex_store_le32, std::array<uint8_t, 4>{0xD0, 0xC0, 0xB0, 0xA0});
1✔
625
         constexpr std::array<uint8_t, 8> cex_store_le64 = Botan::store_le(in64);
1✔
626
         result.test_is_eq(cex_store_le64, std::array<uint8_t, 8>{0x89, 0x67, 0x45, 0x23, 0x01, 0xEF, 0xCD, 0xAB});
1✔
627

628
         constexpr std::array<uint8_t, 2> cex_store_be16 = Botan::store_be(in16);
1✔
629
         result.test_is_eq(cex_store_be16, std::array<uint8_t, 2>{0x12, 0x34});
1✔
630
         constexpr std::array<uint8_t, 4> cex_store_be32 = Botan::store_be(in32);
1✔
631
         result.test_is_eq(cex_store_be32, std::array<uint8_t, 4>{0xA0, 0xB0, 0xC0, 0xD0});
1✔
632
         constexpr std::array<uint8_t, 8> cex_store_be64 = Botan::store_be(in64);
1✔
633
         result.test_is_eq(cex_store_be64, std::array<uint8_t, 8>{0xAB, 0xCD, 0xEF, 0x01, 0x23, 0x45, 0x67, 0x89});
1✔
634

635
         // store_le/be with multiple integers, both as a parameter pack and a range (std::array for constexpr)
636
         constexpr std::array<uint8_t, 16> cex_store_le16s =
1✔
637
            Botan::store_le(in16, in16, in16, in16, in16, in16, in16, in16);
638
         constexpr std::array<uint8_t, 16> cex_store_le16s2 =
1✔
639
            Botan::store_le(std::array{in16, in16, in16, in16, in16, in16, in16, in16});
640
         result.test_is_eq(
1✔
641
            cex_store_le16s,
642
            {0x34, 0x12, 0x34, 0x12, 0x34, 0x12, 0x34, 0x12, 0x34, 0x12, 0x34, 0x12, 0x34, 0x12, 0x34, 0x12});
643
         result.test_is_eq(cex_store_le16s, cex_store_le16s2);
1✔
644
         constexpr std::array<uint8_t, 16> cex_store_le32s = Botan::store_le(in32, in32, in32, in32);
1✔
645
         constexpr std::array<uint8_t, 16> cex_store_le32s2 = Botan::store_le(std::array{in32, in32, in32, in32});
1✔
646
         result.test_is_eq(
1✔
647
            cex_store_le32s,
648
            {0xD0, 0xC0, 0xB0, 0xA0, 0xD0, 0xC0, 0xB0, 0xA0, 0xD0, 0xC0, 0xB0, 0xA0, 0xD0, 0xC0, 0xB0, 0xA0});
649
         result.test_is_eq(cex_store_le32s, cex_store_le32s2);
1✔
650
         constexpr std::array<uint8_t, 16> cex_store_le64s = Botan::store_le(in64, in64);
1✔
651
         constexpr std::array<uint8_t, 16> cex_store_le64s2 = Botan::store_le(std::array{in64, in64});
1✔
652
         result.test_is_eq(
1✔
653
            cex_store_le64s,
654
            {0x89, 0x67, 0x45, 0x23, 0x01, 0xEF, 0xCD, 0xAB, 0x89, 0x67, 0x45, 0x23, 0x01, 0xEF, 0xCD, 0xAB});
655
         result.test_is_eq(cex_store_le64s, cex_store_le64s2);
1✔
656

657
         constexpr std::array<uint8_t, 16> cex_store_be16s =
1✔
658
            Botan::store_be(in16, in16, in16, in16, in16, in16, in16, in16);
659
         constexpr std::array<uint8_t, 16> cex_store_be16s2 =
1✔
660
            Botan::store_be(std::array{in16, in16, in16, in16, in16, in16, in16, in16});
661
         result.test_is_eq(
1✔
662
            cex_store_be16s,
663
            {0x12, 0x34, 0x12, 0x34, 0x12, 0x34, 0x12, 0x34, 0x12, 0x34, 0x12, 0x34, 0x12, 0x34, 0x12, 0x34});
664
         result.test_is_eq(cex_store_be16s, cex_store_be16s2);
1✔
665
         constexpr std::array<uint8_t, 16> cex_store_be32s = Botan::store_be(in32, in32, in32, in32);
1✔
666
         constexpr std::array<uint8_t, 16> cex_store_be32s2 = Botan::store_be(std::array{in32, in32, in32, in32});
1✔
667
         result.test_is_eq(
1✔
668
            cex_store_be32s,
669
            {0xA0, 0xB0, 0xC0, 0xD0, 0xA0, 0xB0, 0xC0, 0xD0, 0xA0, 0xB0, 0xC0, 0xD0, 0xA0, 0xB0, 0xC0, 0xD0});
670
         result.test_is_eq(cex_store_be32s, cex_store_be32s2);
1✔
671
         constexpr std::array<uint8_t, 16> cex_store_be64s = Botan::store_be(in64, in64);
1✔
672
         constexpr std::array<uint8_t, 16> cex_store_be64s2 = Botan::store_be(std::array{in64, in64});
1✔
673
         result.test_is_eq(
1✔
674
            cex_store_be64s,
675
            {0xAB, 0xCD, 0xEF, 0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF, 0x01, 0x23, 0x45, 0x67, 0x89});
676
         result.test_is_eq(cex_store_be64s, cex_store_be64s2);
1✔
677

678
         // load_le/be a single integer
679
         constexpr uint16_t cex_load_le16 = Botan::load_le<uint16_t>(cex_store_le16);
1✔
680
         result.test_is_eq(cex_load_le16, in16);
1✔
681
         constexpr uint32_t cex_load_le32 = Botan::load_le<uint32_t>(cex_store_le32);
1✔
682
         result.test_is_eq(cex_load_le32, in32);
1✔
683
         constexpr uint64_t cex_load_le64 = Botan::load_le<uint64_t>(cex_store_le64);
1✔
684
         result.test_is_eq(cex_load_le64, in64);
1✔
685

686
         constexpr uint16_t cex_load_be16 = Botan::load_be<uint16_t>(cex_store_be16);
1✔
687
         result.test_is_eq(cex_load_be16, in16);
1✔
688
         constexpr uint32_t cex_load_be32 = Botan::load_be<uint32_t>(cex_store_be32);
1✔
689
         result.test_is_eq(cex_load_be32, in32);
1✔
690
         constexpr uint64_t cex_load_be64 = Botan::load_be<uint64_t>(cex_store_be64);
1✔
691
         result.test_is_eq(cex_load_be64, in64);
1✔
692

693
         // load_le/be multiple integers into a std::array for constexpr
694
         constexpr auto cex_load_le16s = Botan::load_le<std::array<uint16_t, cex_mem.size() / 2>>(cex_mem);
1✔
695
         result.test_is_eq(cex_load_le16s, {0x1100, 0x3322, 0x5544, 0x7766, 0x9988, 0xBBAA, 0xDDCC, 0xFFEE});
1✔
696
         constexpr auto cex_load_le32s = Botan::load_le<std::array<uint32_t, cex_mem.size() / 4>>(cex_mem);
1✔
697
         result.test_is_eq(cex_load_le32s, {0x33221100, 0x77665544, 0xBBAA9988, 0xFFEEDDCC});
1✔
698
         constexpr auto cex_load_le64s = Botan::load_le<std::array<uint64_t, cex_mem.size() / 8>>(cex_mem);
1✔
699
         result.test_is_eq(cex_load_le64s, {0x7766554433221100, 0xFFEEDDCCBBAA9988});
1✔
700

701
         constexpr auto cex_load_be16s = Botan::load_be<std::array<uint16_t, cex_mem.size() / 2>>(cex_mem);
1✔
702
         result.test_is_eq(cex_load_be16s, {0x0011, 0x2233, 0x4455, 0x6677, 0x8899, 0xAABB, 0xCCDD, 0xEEFF});
1✔
703
         constexpr auto cex_load_be32s = Botan::load_be<std::array<uint32_t, cex_mem.size() / 4>>(cex_mem);
1✔
704
         result.test_is_eq(cex_load_be32s, {0x00112233, 0x44556677, 0x8899AABB, 0xCCDDEEFF});
1✔
705
         constexpr auto cex_load_be64s = Botan::load_be<std::array<uint64_t, cex_mem.size() / 8>>(cex_mem);
1✔
706
         result.test_is_eq(cex_load_be64s, {0x0011223344556677, 0x8899AABBCCDDEEFF});
1✔
707

708
         return result;
1✔
709
      }
×
710

711
      static std::vector<Test::Result> test_copy_out_be_le() {
1✔
712
         return {
1✔
713
            CHECK("copy_out_be with 16bit input (word aligned)",
714
                  [&](auto& result) {
1✔
715
                     std::vector<uint8_t> out_vector(4);
1✔
716
                     const std::array<uint16_t, 2> in_array = {0x0A0B, 0x0C0D};
1✔
717
                     Botan::copy_out_be(out_vector, in_array);
1✔
718
                     result.test_eq("copy_out_be", out_vector, "0A0B0C0D");
2✔
719
                  }),
1✔
720

721
            CHECK("copy_out_be with 16bit input (partial words)",
722
                  [&](auto& result) {
1✔
723
                     std::vector<uint8_t> out_vector(3);
1✔
724
                     const std::array<uint16_t, 2> in_array = {0x0A0B, 0x0C0D};
1✔
725
                     Botan::copy_out_be(out_vector, in_array);
1✔
726
                     result.test_eq("copy_out_be(u16)", out_vector, "0A0B0C");
2✔
727
                  }),
1✔
728

729
            CHECK("copy_out_le with 16bit input (word aligned)",
730
                  [&](auto& result) {
1✔
731
                     std::vector<uint8_t> out_vector(4);
1✔
732
                     const std::array<uint16_t, 2> in_array = {0x0A0B, 0x0C0D};
1✔
733
                     Botan::copy_out_le(out_vector, in_array);
1✔
734
                     result.test_eq("copy_out_le(u16)", out_vector, "0B0A0D0C");
2✔
735
                  }),
1✔
736

737
            CHECK("copy_out_le with 16bit input (partial words)",
738
                  [&](auto& result) {
1✔
739
                     std::vector<uint8_t> out_vector(3);
1✔
740
                     const std::array<uint16_t, 2> in_array = {0x0A0B, 0x0C0D};
1✔
741
                     Botan::copy_out_le(out_vector, in_array);
1✔
742
                     result.test_eq("copy_out_le(u16)", out_vector, "0B0A0D");
2✔
743
                  }),
1✔
744

745
            CHECK("copy_out_be with 64bit input (word aligned)",
746
                  [&](auto& result) {
1✔
747
                     std::vector<uint8_t> out_vector(16);
1✔
748
                     const std::array<uint64_t, 2> in_array = {0x0A0B0C0D0E0F1011, 0x1213141516171819};
1✔
749
                     Botan::copy_out_be(out_vector, in_array);
1✔
750
                     result.test_eq("copy_out_be(u64)", out_vector, "0A0B0C0D0E0F10111213141516171819");
2✔
751
                  }),
1✔
752

753
            CHECK("copy_out_le with 64bit input (word aligned)",
754
                  [&](auto& result) {
1✔
755
                     std::vector<uint8_t> out_vector(16);
1✔
756
                     const std::array<uint64_t, 2> in_array = {0x0A0B0C0D0E0F1011, 0x1213141516171819};
1✔
757
                     Botan::copy_out_le(out_vector, in_array);
1✔
758
                     result.test_eq("copy_out_le(u64)", out_vector, "11100F0E0D0C0B0A1918171615141312");
2✔
759
                  }),
1✔
760

761
            CHECK("copy_out_be with 64bit input (partial words)",
762
                  [&](auto& result) {
1✔
763
                     std::vector<uint8_t> out_vector(15);
1✔
764
                     const std::array<uint64_t, 2> in_array = {0x0A0B0C0D0E0F1011, 0x1213141516171819};
1✔
765
                     Botan::copy_out_be(out_vector, in_array);
1✔
766
                     result.test_eq("copy_out_be(u64)", out_vector, "0A0B0C0D0E0F101112131415161718");
2✔
767
                  }),
1✔
768

769
            CHECK("copy_out_le with 64bit input (partial words)",
770
                  [&](auto& result) {
1✔
771
                     std::vector<uint8_t> out_vector(15);
1✔
772
                     const std::array<uint64_t, 2> in_array = {0x0A0B0C0D0E0F1011, 0x1213141516171819};
1✔
773
                     Botan::copy_out_le(out_vector, in_array);
1✔
774
                     result.test_eq("copy_out_le(u64)", out_vector, "11100F0E0D0C0B0A19181716151413");
2✔
775
                  }),
1✔
776
         };
9✔
777
      }
1✔
778
};
779

780
BOTAN_REGISTER_SMOKE_TEST("utils", "util", Utility_Function_Tests);
781

782
class BitOps_Tests final : public Test {
1✔
783
   public:
784
      std::vector<Test::Result> run() override {
1✔
785
         std::vector<Test::Result> results;
1✔
786

787
         results.push_back(test_power_of_2());
2✔
788
         results.push_back(test_ctz());
2✔
789
         results.push_back(test_sig_bytes());
2✔
790
         results.push_back(test_popcount());
2✔
791
         results.push_back(test_reverse_bits());
2✔
792

793
         return results;
1✔
794
      }
×
795

796
   private:
797
      template <typename T>
798
      void test_ctz(Test::Result& result, T val, size_t expected) {
6✔
799
         Botan::CT::poison(val);
800
         const size_t computed = Botan::ctz<T>(val);
6✔
801
         Botan::CT::unpoison_all(computed, val);
802
         result.test_eq("ctz(" + std::to_string(val) + ")", computed, expected);
24✔
803
      }
6✔
804

805
      Test::Result test_ctz() {
1✔
806
         Test::Result result("ctz");
1✔
807
         test_ctz<uint32_t>(result, 0, 32);
1✔
808
         test_ctz<uint32_t>(result, 1, 0);
1✔
809
         test_ctz<uint32_t>(result, 0x80, 7);
1✔
810
         test_ctz<uint32_t>(result, 0x8000000, 27);
1✔
811
         test_ctz<uint32_t>(result, 0x8100000, 20);
1✔
812
         test_ctz<uint32_t>(result, 0x80000000, 31);
1✔
813

814
         return result;
1✔
815
      }
×
816

817
      template <typename T>
818
      void test_sig_bytes(Test::Result& result, T val, size_t expected) {
14✔
819
         Botan::CT::poison(val);
820
         const size_t computed = Botan::significant_bytes<T>(val);
14✔
821
         Botan::CT::unpoison_all(computed, val);
822
         result.test_eq("significant_bytes(" + std::to_string(val) + ")", computed, expected);
56✔
823
      }
14✔
824

825
      Test::Result test_sig_bytes() {
1✔
826
         Test::Result result("significant_bytes");
1✔
827
         test_sig_bytes<uint32_t>(result, 0, 0);
1✔
828
         test_sig_bytes<uint32_t>(result, 1, 1);
1✔
829
         test_sig_bytes<uint32_t>(result, 0x80, 1);
1✔
830
         test_sig_bytes<uint32_t>(result, 255, 1);
1✔
831
         test_sig_bytes<uint32_t>(result, 256, 2);
1✔
832
         test_sig_bytes<uint32_t>(result, 65535, 2);
1✔
833
         test_sig_bytes<uint32_t>(result, 65536, 3);
1✔
834
         test_sig_bytes<uint32_t>(result, 0x80000000, 4);
1✔
835

836
         test_sig_bytes<uint64_t>(result, 0, 0);
1✔
837
         test_sig_bytes<uint64_t>(result, 1, 1);
1✔
838
         test_sig_bytes<uint64_t>(result, 0x80, 1);
1✔
839
         test_sig_bytes<uint64_t>(result, 256, 2);
1✔
840
         test_sig_bytes<uint64_t>(result, 0x80000000, 4);
1✔
841
         test_sig_bytes<uint64_t>(result, 0x100000000, 5);
1✔
842

843
         return result;
1✔
844
      }
×
845

846
      template <typename T>
847
      void test_power_of_2(Test::Result& result, T val, bool expected) {
15✔
848
         result.test_eq("power_of_2(" + std::to_string(val) + ")", Botan::is_power_of_2<T>(val), expected);
75✔
849
      }
15✔
850

851
      Test::Result test_power_of_2() {
1✔
852
         Test::Result result("is_power_of_2");
1✔
853

854
         test_power_of_2<uint32_t>(result, 0, false);
1✔
855
         test_power_of_2<uint32_t>(result, 1, false);
1✔
856
         test_power_of_2<uint32_t>(result, 2, true);
1✔
857
         test_power_of_2<uint32_t>(result, 3, false);
1✔
858
         test_power_of_2<uint32_t>(result, 0x8000, true);
1✔
859
         test_power_of_2<uint32_t>(result, 0x8001, false);
1✔
860
         test_power_of_2<uint32_t>(result, 0x8000000, true);
1✔
861

862
         test_power_of_2<uint64_t>(result, 0, false);
1✔
863
         test_power_of_2<uint64_t>(result, 1, false);
1✔
864
         test_power_of_2<uint64_t>(result, 2, true);
1✔
865
         test_power_of_2<uint64_t>(result, 3, false);
1✔
866
         test_power_of_2<uint64_t>(result, 0x8000, true);
1✔
867
         test_power_of_2<uint64_t>(result, 0x8001, false);
1✔
868
         test_power_of_2<uint64_t>(result, 0x8000000, true);
1✔
869
         test_power_of_2<uint64_t>(result, 0x100000000000, true);
1✔
870

871
         return result;
1✔
872
      }
×
873

874
      template <typename T>
875
      auto pc(T val) -> decltype(Botan::ct_popcount(val)) {
2✔
876
         return Botan::ct_popcount(val);
10✔
877
      }
878

879
      template <typename T>
880
      auto random_pc(Test::Result& result) {
4✔
881
         auto n = Botan::load_le<T>(Test::rng().random_array<sizeof(T)>());
4✔
882
         result.test_is_eq<size_t>(Botan::fmt("popcount({}) == {}", n, std::popcount(n)), pc(n), std::popcount(n));
4✔
883
      }
4✔
884

885
      Test::Result test_popcount() {
1✔
886
         Test::Result result("popcount");
1✔
887

888
         result.test_is_eq<uint8_t>("popcount<uint8_t>(0)", pc<uint8_t>(0), 0);
1✔
889
         result.test_is_eq<uint8_t>("popcount<uint16_t>(0)", pc<uint16_t>(0), 0);
1✔
890
         result.test_is_eq<uint8_t>("popcount<uint32_t>(0)", pc<uint32_t>(0), 0);
1✔
891
         result.test_is_eq<uint8_t>("popcount<uint64_t>(0)", pc<uint64_t>(0), 0);
1✔
892

893
         result.test_is_eq<uint8_t>("popcount<uint8_t>(1)", pc<uint8_t>(1), 1);
1✔
894
         result.test_is_eq<uint8_t>("popcount<uint16_t>(1)", pc<uint16_t>(1), 1);
1✔
895
         result.test_is_eq<uint8_t>("popcount<uint32_t>(1)", pc<uint32_t>(1), 1);
1✔
896
         result.test_is_eq<uint8_t>("popcount<uint64_t>(1)", pc<uint64_t>(1), 1);
1✔
897

898
         result.test_is_eq<uint8_t>("popcount<uint8_t>(0xAA)", pc<uint8_t>(0xAA), 4);
1✔
899
         result.test_is_eq<uint8_t>("popcount<uint16_t>(0xAAAA)", pc<uint16_t>(0xAAAA), 8);
1✔
900
         result.test_is_eq<uint8_t>("popcount<uint32_t>(0xAAAA...)", pc<uint32_t>(0xAAAAAAAA), 16);
1✔
901
         result.test_is_eq<uint8_t>("popcount<uint64_t>(0xAAAA...)", pc<uint64_t>(0xAAAAAAAAAAAAAAAA), 32);
1✔
902

903
         result.test_is_eq<uint8_t>("popcount<uint8_t>(0xFF)", pc<uint8_t>(0xFF), 8);
1✔
904
         result.test_is_eq<uint8_t>("popcount<uint16_t>(0xFFFF)", pc<uint16_t>(0xFFFF), 16);
1✔
905
         result.test_is_eq<uint8_t>("popcount<uint32_t>(0xFFFF...)", pc<uint32_t>(0xFFFFFFFF), 32);
1✔
906
         result.test_is_eq<uint8_t>("popcount<uint64_t>(0xFFFF...)", pc<uint64_t>(0xFFFFFFFFFFFFFFFF), 64);
1✔
907

908
         random_pc<uint8_t>(result);
1✔
909
         random_pc<uint16_t>(result);
1✔
910
         random_pc<uint32_t>(result);
1✔
911
         random_pc<uint64_t>(result);
1✔
912

913
         return result;
1✔
914
      }
×
915

916
      Test::Result test_reverse_bits() {
1✔
917
         Test::Result result("reverse_bits");
1✔
918

919
         result.test_is_eq<uint8_t>("rev(0u8)", Botan::ct_reverse_bits<uint8_t>(0b00000000), 0b00000000);
1✔
920
         result.test_is_eq<uint8_t>("rev(1u8)", Botan::ct_reverse_bits<uint8_t>(0b01010101), 0b10101010);
1✔
921
         result.test_is_eq<uint8_t>("rev(2u8)", Botan::ct_reverse_bits<uint8_t>(0b01001011), 0b11010010);
1✔
922

923
         result.test_is_eq<uint16_t>(
1✔
924
            "rev(0u16)", Botan::ct_reverse_bits<uint16_t>(0b0000000000000000), 0b0000000000000000);
1✔
925
         result.test_is_eq<uint16_t>(
1✔
926
            "rev(1u16)", Botan::ct_reverse_bits<uint16_t>(0b0101010101010101), 0b1010101010101010);
1✔
927
         result.test_is_eq<uint16_t>(
1✔
928
            "rev(2u16)", Botan::ct_reverse_bits<uint16_t>(0b0100101101011010), 0b0101101011010010);
1✔
929

930
         result.test_is_eq<uint32_t>("rev(0u32)", Botan::ct_reverse_bits<uint32_t>(0xFFFFFFFF), 0xFFFFFFFF);
1✔
931
         result.test_is_eq<uint32_t>("rev(1u32)", Botan::ct_reverse_bits<uint32_t>(0x55555555), 0xAAAAAAAA);
1✔
932
         result.test_is_eq<uint32_t>("rev(2u32)", Botan::ct_reverse_bits<uint32_t>(0x4B6A2C1D), 0xB83456D2);
1✔
933

934
         result.test_is_eq<uint64_t>(
1✔
935
            "rev(0u64)", Botan::ct_reverse_bits<uint64_t>(0xF0E0D0C005040302), 0x40C020A0030B070F);
1✔
936
         result.test_is_eq<uint64_t>(
1✔
937
            "rev(1u64)", Botan::ct_reverse_bits<uint64_t>(0x5555555555555555), 0xAAAAAAAAAAAAAAAA);
1✔
938
         result.test_is_eq<uint64_t>(
1✔
939
            "rev(2u64)", Botan::ct_reverse_bits<uint64_t>(0x4B6A2C1D5E7F8A90), 0x951FE7AB83456D2);
1✔
940

941
         return result;
1✔
942
      }
×
943
};
944

945
BOTAN_REGISTER_TEST("utils", "bit_ops", BitOps_Tests);
946

947
#if defined(BOTAN_HAS_POLY_DBL)
948

949
class Poly_Double_Tests final : public Text_Based_Test {
×
950
   public:
951
      Poly_Double_Tests() : Text_Based_Test("poly_dbl.vec", "In,Out") {}
2✔
952

953
      Test::Result run_one_test(const std::string& /*header*/, const VarMap& vars) override {
82✔
954
         Test::Result result("Polynomial doubling");
82✔
955
         const std::vector<uint8_t> in = vars.get_req_bin("In");
82✔
956
         const std::vector<uint8_t> out = vars.get_req_bin("Out");
82✔
957

958
         std::vector<uint8_t> b = in;
82✔
959
         Botan::poly_double_n(b.data(), b.size());
82✔
960

961
         result.test_eq("Expected value", b, out);
164✔
962
         return result;
82✔
963
      }
246✔
964
};
965

966
BOTAN_REGISTER_TEST("utils", "poly_dbl", Poly_Double_Tests);
967

968
#endif
969

970
class Version_Tests final : public Test {
1✔
971
   public:
972
      std::vector<Test::Result> run() override {
1✔
973
         Test::Result result("Versions");
1✔
974

975
         result.confirm("Version datestamp matches macro", Botan::version_datestamp() == BOTAN_VERSION_DATESTAMP);
2✔
976

977
         const char* version_cstr = Botan::version_cstr();
1✔
978
         const std::string version_str = Botan::version_string();
1✔
979
         result.test_eq("Same version string", version_str, std::string(version_cstr));
2✔
980

981
         const char* sversion_cstr = Botan::short_version_cstr();
1✔
982
         const std::string sversion_str = Botan::short_version_string();
1✔
983
         result.test_eq("Same short version string", sversion_str, std::string(sversion_cstr));
2✔
984

985
         const auto expected_sversion =
1✔
986
            Botan::fmt("{}.{}.{}", BOTAN_VERSION_MAJOR, BOTAN_VERSION_MINOR, BOTAN_VERSION_PATCH);
1✔
987

988
         // May have a suffix eg 4.0.0-rc2
989
         result.confirm("Short version string has expected format", sversion_str.starts_with(expected_sversion));
2✔
990

991
         const std::string version_check_ok =
1✔
992
            Botan::runtime_version_check(BOTAN_VERSION_MAJOR, BOTAN_VERSION_MINOR, BOTAN_VERSION_PATCH);
1✔
993

994
         result.confirm("Correct version no warning", version_check_ok.empty());
2✔
995

996
         const std::string version_check_bad = Botan::runtime_version_check(1, 19, 42);
1✔
997

998
         const std::string expected_error =
1✔
999
            "Warning: linked version (" + sversion_str + ") does not match version built against (1.19.42)\n";
2✔
1000

1001
         result.test_eq("Expected warning text", version_check_bad, expected_error);
1✔
1002

1003
         return {result};
3✔
1004
      }
2✔
1005
};
1006

1007
BOTAN_REGISTER_TEST("utils", "versioning", Version_Tests);
1008

1009
class Date_Format_Tests final : public Text_Based_Test {
×
1010
   public:
1011
      Date_Format_Tests() : Text_Based_Test("dates.vec", "Date") {}
2✔
1012

1013
      static std::vector<uint32_t> parse_date(const std::string& s) {
11✔
1014
         const std::vector<std::string> parts = Botan::split_on(s, ',');
11✔
1015
         if(parts.size() != 6) {
11✔
1016
            throw Test_Error("Bad date format '" + s + "'");
×
1017
         }
1018

1019
         std::vector<uint32_t> u32s;
11✔
1020
         u32s.reserve(parts.size());
11✔
1021
         for(const auto& sub : parts) {
77✔
1022
            u32s.push_back(Botan::to_u32bit(sub));
66✔
1023
         }
1024
         return u32s;
11✔
1025
      }
11✔
1026

1027
      Test::Result run_one_test(const std::string& type, const VarMap& vars) override {
11✔
1028
         const std::string date_str = vars.get_req_str("Date");
11✔
1029
         Test::Result result("Date parsing");
11✔
1030

1031
         const std::vector<uint32_t> d = parse_date(date_str);
11✔
1032

1033
         if(type == "valid" || type == "valid.not_std" || type == "valid.64_bit_time_t") {
11✔
1034
            const Botan::calendar_point c(d[0], d[1], d[2], d[3], d[4], d[5]);
11✔
1035
            result.test_is_eq(date_str + " year", c.year(), d[0]);
11✔
1036
            result.test_is_eq(date_str + " month", c.month(), d[1]);
11✔
1037
            result.test_is_eq(date_str + " day", c.day(), d[2]);
11✔
1038
            result.test_is_eq(date_str + " hour", c.hour(), d[3]);
11✔
1039
            result.test_is_eq(date_str + " minute", c.minutes(), d[4]);
11✔
1040
            result.test_is_eq(date_str + " second", c.seconds(), d[5]);
11✔
1041

1042
            if(type == "valid.not_std" ||
11✔
1043
               (type == "valid.64_bit_time_t" && c.year() > 2037 && sizeof(std::time_t) == 4)) {
1044
               result.test_throws("valid but out of std::timepoint range", [c]() { c.to_std_timepoint(); });
12✔
1045
            } else {
1046
               const Botan::calendar_point c2(c.to_std_timepoint());
8✔
1047
               result.test_is_eq(date_str + " year", c2.year(), d[0]);
8✔
1048
               result.test_is_eq(date_str + " month", c2.month(), d[1]);
8✔
1049
               result.test_is_eq(date_str + " day", c2.day(), d[2]);
8✔
1050
               result.test_is_eq(date_str + " hour", c2.hour(), d[3]);
8✔
1051
               result.test_is_eq(date_str + " minute", c2.minutes(), d[4]);
8✔
1052
               result.test_is_eq(date_str + " second", c2.seconds(), d[5]);
16✔
1053
            }
1054
         } else if(type == "invalid") {
×
1055
            result.test_throws("invalid date",
×
1056
                               [d]() { const Botan::calendar_point c(d[0], d[1], d[2], d[3], d[4], d[5]); });
×
1057
         } else {
1058
            throw Test_Error("Unexpected header '" + type + "' in date format tests");
×
1059
         }
1060

1061
         return result;
22✔
1062
      }
11✔
1063

1064
      std::vector<Test::Result> run_final_tests() override {
1✔
1065
         Test::Result result("calendar_point::to_string");
1✔
1066
         const Botan::calendar_point d(2008, 5, 15, 9, 30, 33);
1✔
1067
         // desired format: <YYYY>-<MM>-<dd>T<HH>:<mm>:<ss>
1068
         result.test_eq("calendar_point::to_string", d.to_string(), "2008-05-15T09:30:33");
2✔
1069
         return {result};
3✔
1070
      }
2✔
1071
};
1072

1073
BOTAN_REGISTER_TEST("utils", "util_dates", Date_Format_Tests);
1074

1075
class Charset_Tests final : public Text_Based_Test {
×
1076
   public:
1077
      Charset_Tests() : Text_Based_Test("charset.vec", "In,Out") {}
2✔
1078

1079
      Test::Result run_one_test(const std::string& type, const VarMap& vars) override {
8✔
1080
         Test::Result result("Charset");
8✔
1081

1082
         const std::vector<uint8_t> in = vars.get_req_bin("In");
8✔
1083
         const std::vector<uint8_t> expected = vars.get_req_bin("Out");
8✔
1084

1085
         std::string converted;
8✔
1086

1087
         if(type == "UCS2-UTF8") {
8✔
1088
            converted = Botan::ucs2_to_utf8(in.data(), in.size());
4✔
1089
         } else if(type == "UCS4-UTF8") {
4✔
1090
            converted = Botan::ucs4_to_utf8(in.data(), in.size());
1✔
1091
         } else if(type == "LATIN1-UTF8") {
3✔
1092
            converted = Botan::latin1_to_utf8(in.data(), in.size());
3✔
1093
         } else {
1094
            throw Test_Error("Unexpected header '" + type + "' in charset tests");
×
1095
         }
1096

1097
         result.test_eq(
16✔
1098
            "string converted successfully", std::vector<uint8_t>(converted.begin(), converted.end()), expected);
8✔
1099

1100
         return result;
8✔
1101
      }
24✔
1102
};
1103

1104
BOTAN_REGISTER_TEST("utils", "charset", Charset_Tests);
1105

1106
class Hostname_Tests final : public Text_Based_Test {
×
1107
   public:
1108
      Hostname_Tests() : Text_Based_Test("hostnames.vec", "Issued,Hostname") {}
2✔
1109

1110
      Test::Result run_one_test(const std::string& type, const VarMap& vars) override {
44✔
1111
         Test::Result result("Hostname Matching");
44✔
1112

1113
         const std::string issued = vars.get_req_str("Issued");
44✔
1114
         const std::string hostname = vars.get_req_str("Hostname");
44✔
1115
         const bool expected = (type == "Invalid") ? false : true;
44✔
1116

1117
         const std::string what = hostname + ((expected == true) ? " matches " : " does not match ") + issued;
88✔
1118
         result.test_eq(what, Botan::host_wildcard_match(issued, hostname), expected);
44✔
1119

1120
         return result;
44✔
1121
      }
44✔
1122
};
1123

1124
BOTAN_REGISTER_TEST("utils", "hostname", Hostname_Tests);
1125

1126
class DNS_Check_Tests final : public Text_Based_Test {
×
1127
   public:
1128
      DNS_Check_Tests() : Text_Based_Test("utils/dns.vec", "DNS") {}
2✔
1129

1130
      Test::Result run_one_test(const std::string& type, const VarMap& vars) override {
59✔
1131
         Test::Result result("DNS name validation");
59✔
1132

1133
         const std::string name = vars.get_req_str("DNS");
59✔
1134
         const bool valid = (type == "Invalid") ? false : true;
59✔
1135

1136
         try {
59✔
1137
            const auto canonicalized = Botan::check_and_canonicalize_dns_name(name);
59✔
1138
            BOTAN_UNUSED(canonicalized);
25✔
1139

1140
            if(valid) {
25✔
1141
               result.test_success("Accepted valid name");
50✔
1142
            } else {
1143
               result.test_failure("Accepted invalid name");
×
1144
            }
1145
         } catch(Botan::Decoding_Error&) {
59✔
1146
            if(valid) {
34✔
1147
               result.test_failure("Rejected valid name");
×
1148
            } else {
1149
               result.test_success("Rejected invalid name");
68✔
1150
            }
1151
         }
34✔
1152

1153
         return result;
59✔
1154
      }
59✔
1155
};
1156

1157
BOTAN_REGISTER_TEST("utils", "dns_check", DNS_Check_Tests);
1158

1159
class IPv4_Parsing_Tests final : public Text_Based_Test {
×
1160
   public:
1161
      IPv4_Parsing_Tests() : Text_Based_Test("utils/ipv4.vec", "IPv4") {}
2✔
1162

1163
      Test::Result run_one_test(const std::string& status, const VarMap& vars) override {
47✔
1164
         Test::Result result("IPv4 parsing");
47✔
1165

1166
         const std::string input = vars.get_req_str("IPv4");
47✔
1167
         const bool valid = (status == "Valid");
47✔
1168

1169
         auto ipv4 = Botan::string_to_ipv4(input);
47✔
1170

1171
         result.test_eq("string_to_ipv4 accepts only valid", valid, ipv4.has_value());
47✔
1172

1173
         if(ipv4) {
47✔
1174
            const std::string rt = Botan::ipv4_to_string(ipv4.value());
13✔
1175
            result.test_eq("ipv4_to_string and string_to_ipv4 round trip", input, rt);
26✔
1176
         }
13✔
1177

1178
         return result;
47✔
1179
      }
47✔
1180
};
1181

1182
BOTAN_REGISTER_TEST("utils", "ipv4_parse", IPv4_Parsing_Tests);
1183

1184
class ReadKV_Tests final : public Text_Based_Test {
×
1185
   public:
1186
      ReadKV_Tests() : Text_Based_Test("utils/read_kv.vec", "Input,Expected") {}
2✔
1187

1188
      Test::Result run_one_test(const std::string& status, const VarMap& vars) override {
16✔
1189
         Test::Result result("read_kv");
16✔
1190

1191
         const bool is_valid = (status == "Valid");
16✔
1192

1193
         const std::string input = vars.get_req_str("Input");
16✔
1194
         const std::string expected = vars.get_req_str("Expected");
16✔
1195

1196
         if(is_valid) {
16✔
1197
            confirm_kv(result, Botan::read_kv(input), split_group(expected));
14✔
1198
         } else {
1199
            // In this case "expected" is the expected exception message
1200
            result.test_throws("Invalid key value input throws exception", expected, [&]() { Botan::read_kv(input); });
36✔
1201
         }
1202
         return result;
16✔
1203
      }
16✔
1204

1205
   private:
1206
      static std::vector<std::string> split_group(const std::string& str) {
7✔
1207
         std::vector<std::string> elems;
7✔
1208
         if(str.empty()) {
7✔
1209
            return elems;
1210
         }
1211

1212
         std::string substr;
6✔
1213
         for(const char c : str) {
115✔
1214
            if(c == '|') {
109✔
1215
               elems.push_back(substr);
16✔
1216
               substr.clear();
16✔
1217
            } else {
1218
               substr += c;
202✔
1219
            }
1220
         }
1221

1222
         if(!substr.empty()) {
6✔
1223
            elems.push_back(substr);
6✔
1224
         }
1225

1226
         return elems;
6✔
1227
      }
6✔
1228

1229
      static void confirm_kv(Test::Result& result,
7✔
1230
                             const std::map<std::string, std::string>& kv,
1231
                             const std::vector<std::string>& expected) {
1232
         if(!result.test_eq("expected size", expected.size() % 2, size_t(0))) {
7✔
1233
            return;
1234
         }
1235

1236
         for(size_t i = 0; i != expected.size(); i += 2) {
18✔
1237
            auto j = kv.find(expected[i]);
11✔
1238
            if(result.confirm("Found key", j != kv.end())) {
22✔
1239
               result.test_eq("Matching value", j->second, expected[i + 1]);
22✔
1240
            }
1241
         }
1242

1243
         result.test_eq("KV has same size as expected", kv.size(), expected.size() / 2);
14✔
1244
      }
1245
};
1246

1247
BOTAN_REGISTER_TEST("utils", "util_read_kv", ReadKV_Tests);
1248

1249
#if defined(BOTAN_HAS_CPUID)
1250

1251
class CPUID_Tests final : public Test {
1✔
1252
   public:
1253
      std::vector<Test::Result> run() override {
1✔
1254
         Test::Result result("CPUID");
1✔
1255

1256
         const std::string cpuid_string = Botan::CPUID::to_string();
1✔
1257
         result.test_success("CPUID::to_string doesn't crash");
1✔
1258

1259
         for(size_t b = 0; b != 32; ++b) {
33✔
1260
            try {
32✔
1261
               const auto bit = static_cast<uint32_t>(1) << b;
32✔
1262
               // NOLINTNEXTLINE(clang-analyzer-optin.core.EnumCastOutOfRange)
1263
               const auto feat = Botan::CPUID::Feature(static_cast<Botan::CPUID::Feature::Bit>(bit));
32✔
1264

1265
               const std::string feat_str = feat.to_string();
32✔
1266

1267
               result.confirm("Feature string is not empty", !feat_str.empty());
40✔
1268

1269
               if(auto from_str = Botan::CPUID::Feature::from_string(feat_str)) {
20✔
1270
                  result.test_int_eq("Feature::from_string returns expected bit", from_str->as_u32(), bit);
40✔
1271
               } else {
1272
                  result.test_failure(
×
1273
                     Botan::fmt("Feature::from_string didn't recognize its own output ({})", feat_str));
×
1274
               }
1275
            } catch(Botan::Invalid_State&) {
32✔
1276
               // This will thrown if the bit is not a valid one
1277
            }
12✔
1278
         }
1279

1280
   #if defined(BOTAN_TARGET_ARCH_IS_X86_FAMILY)
1281

1282
         const auto bit = Botan::CPUID::Feature::SSE2;
1✔
1283

1284
         if(Botan::CPUID::has(bit)) {
1✔
1285
            result.confirm("Output string includes sse2", cpuid_string.find("sse2") != std::string::npos);
2✔
1286

1287
            Botan::CPUID::clear_cpuid_bit(bit);
1✔
1288

1289
            result.test_eq(
2✔
1290
               "After clearing cpuid bit, CPUID::has for SSE2 returns false", Botan::CPUID::has(bit), false);
1✔
1291

1292
            Botan::CPUID::initialize();  // reset state
1✔
1293
            result.test_eq(
3✔
1294
               "After reinitializing, CPUID::has for SSE2 returns true again", Botan::CPUID::has(bit), true);
1✔
1295
         }
1296
   #else
1297
         BOTAN_UNUSED(cpuid_string);
1298
   #endif
1299

1300
         return {result};
3✔
1301
      }
2✔
1302
};
1303

1304
BOTAN_REGISTER_SERIALIZED_TEST("utils", "cpuid", CPUID_Tests);
1305

1306
#endif
1307

1308
#if defined(BOTAN_HAS_UUID)
1309

1310
class UUID_Tests : public Test {
1✔
1311
   public:
1312
      std::vector<Test::Result> run() override {
1✔
1313
         Test::Result result("UUID");
1✔
1314

1315
         const Botan::UUID empty_uuid;
1✔
1316
         const Botan::UUID random_uuid1(this->rng());
1✔
1317
         const Botan::UUID random_uuid2(this->rng());
1✔
1318
         const Botan::UUID loaded_uuid(std::vector<uint8_t>(16, 4));
1✔
1319

1320
         result.test_throws("Cannot load wrong number of bytes",
2✔
1321
                            []() { const Botan::UUID u(std::vector<uint8_t>(15)); });
1✔
1322

1323
         result.test_eq("Empty UUID is empty", empty_uuid.is_valid(), false);
1✔
1324
         result.confirm("Empty UUID equals another empty UUID", empty_uuid == Botan::UUID());
2✔
1325

1326
         result.test_throws("Empty UUID cannot become a string", [&]() { empty_uuid.to_string(); });
3✔
1327

1328
         result.test_eq("Random UUID not empty", random_uuid1.is_valid(), true);
1✔
1329
         result.test_eq("Random UUID not empty", random_uuid2.is_valid(), true);
1✔
1330

1331
         result.confirm("Random UUIDs are distinct", random_uuid1 != random_uuid2);
2✔
1332
         result.confirm("Random UUIDs not equal to empty", random_uuid1 != empty_uuid);
2✔
1333

1334
         const std::string uuid4_str = loaded_uuid.to_string();
1✔
1335
         result.test_eq("String matches expected", uuid4_str, "04040404-0404-0404-0404-040404040404");
2✔
1336

1337
         const std::string uuid_r1_str = random_uuid1.to_string();
1✔
1338
         result.confirm("UUID from string matches", Botan::UUID(uuid_r1_str) == random_uuid1);
2✔
1339

1340
         class AllSame_RNG : public Botan::RandomNumberGenerator {
×
1341
            public:
1342
               explicit AllSame_RNG(uint8_t b) : m_val(b) {}
2✔
1343

1344
               void fill_bytes_with_input(std::span<uint8_t> output, std::span<const uint8_t> /* ignored */) override {
2✔
1345
                  std::fill(output.begin(), output.end(), m_val);
2✔
1346
               }
2✔
1347

1348
               std::string name() const override { return "zeros"; }
×
1349

1350
               bool accepts_input() const override { return false; }
×
1351

1352
               void clear() override {}
×
1353

1354
               bool is_seeded() const override { return true; }
×
1355

1356
            private:
1357
               uint8_t m_val;
1358
         };
1359

1360
         AllSame_RNG zeros(0x00);
1✔
1361
         const Botan::UUID zero_uuid(zeros);
1✔
1362
         result.test_eq("Zero UUID matches expected", zero_uuid.to_string(), "00000000-0000-4000-8000-000000000000");
2✔
1363

1364
         AllSame_RNG ones(0xFF);
1✔
1365
         const Botan::UUID ones_uuid(ones);
1✔
1366
         result.test_eq("Ones UUID matches expected", ones_uuid.to_string(), "FFFFFFFF-FFFF-4FFF-BFFF-FFFFFFFFFFFF");
2✔
1367

1368
         return {result};
3✔
1369
      }
6✔
1370
};
1371

1372
BOTAN_REGISTER_TEST("utils", "uuid", UUID_Tests);
1373

1374
#endif
1375

1376
class Formatter_Tests : public Test {
1✔
1377
   public:
1378
      std::vector<Test::Result> run() override {
1✔
1379
         Test::Result result("Format utility");
1✔
1380

1381
         /*
1382
         In a number of these tests, we are not strictly depending on the
1383
         behavior, for instance checking `fmt("{}") == "{}"` is more about
1384
         checking that we don't crash, rather than we return that precise string.
1385
         */
1386

1387
         result.test_eq("test 1", Botan::fmt("hi"), "hi");
2✔
1388
         result.test_eq("test 2", Botan::fmt("ignored", 5), "ignored");
2✔
1389
         result.test_eq("test 3", Botan::fmt("answer is {}", 42), "answer is 42");
2✔
1390
         result.test_eq("test 4", Botan::fmt("{", 5), "{");
2✔
1391
         result.test_eq("test 4", Botan::fmt("{}"), "{}");
2✔
1392
         result.test_eq("test 5", Botan::fmt("{} == '{}'", 5, "five"), "5 == 'five'");
2✔
1393

1394
         return {result};
3✔
1395
      }
2✔
1396
};
1397

1398
BOTAN_REGISTER_TEST("utils", "fmt", Formatter_Tests);
1399

1400
class ScopedCleanup_Tests : public Test {
1✔
1401
   public:
1402
      std::vector<Test::Result> run() override {
1✔
1403
         return {
1✔
1404
            CHECK("leaving a scope results in cleanup",
1405
                  [](Test::Result& result) {
1✔
1406
                     bool ran = false;
1✔
1407
                     {
1✔
1408
                        auto clean = Botan::scoped_cleanup([&] { ran = true; });
1✔
1409
                     }
1✔
1410
                     result.confirm("cleanup ran", ran);
2✔
1411
                  }),
1✔
1412

1413
            CHECK("leaving a function, results in cleanup",
1414
                  [](Test::Result& result) {
1✔
1415
                     bool ran = false;
1✔
1416
                     bool fn_called = false;
1✔
1417
                     auto fn = [&] {
2✔
1418
                        auto clean = Botan::scoped_cleanup([&] { ran = true; });
1✔
1419
                        fn_called = true;
1✔
1420
                     };
2✔
1421

1422
                     result.confirm("cleanup not yet ran", !ran);
2✔
1423
                     fn();
1✔
1424
                     result.confirm("fn called", fn_called);
2✔
1425
                     result.confirm("cleanup ran", ran);
2✔
1426
                  }),
1✔
1427

1428
            CHECK("stack unwinding results in cleanup",
1429
                  [](Test::Result& result) {
1✔
1430
                     bool ran = false;
1✔
1431
                     bool fn_called = false;
1✔
1432
                     bool exception_caught = false;
1✔
1433
                     auto fn = [&] {
2✔
1434
                        auto clean = Botan::scoped_cleanup([&] { ran = true; });
1✔
1435
                        fn_called = true;
1✔
1436
                        throw std::runtime_error("test");
1✔
1437
                     };
2✔
1438

1439
                     result.confirm("cleanup not yet ran", !ran);
2✔
1440
                     try {
1✔
1441
                        fn();
1✔
1442
                     } catch(const std::exception&) {
1✔
1443
                        exception_caught = true;
1✔
1444
                     }
1✔
1445

1446
                     result.confirm("fn called", fn_called);
2✔
1447
                     result.confirm("cleanup ran", ran);
2✔
1448
                     result.confirm("exception caught", exception_caught);
2✔
1449
                  }),
1✔
1450

1451
            CHECK("cleanup isn't called after disengaging",
1452
                  [](Test::Result& result) {
1✔
1453
                     bool ran = false;
1✔
1454
                     {
1✔
1455
                        auto clean = Botan::scoped_cleanup([&] { ran = true; });
1✔
1456
                        clean.disengage();
1✔
1457
                     }
1✔
1458
                     result.confirm("cleanup not ran", !ran);
2✔
1459
                  }),
1✔
1460

1461
         };
5✔
1462
      }
1✔
1463
};
1464

1465
BOTAN_REGISTER_TEST("utils", "scoped_cleanup", ScopedCleanup_Tests);
1466

1467
}  // namespace
1468

1469
}  // namespace Botan_Tests
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc