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

randombit / botan / 26864473078

02 Jun 2026 07:58PM UTC coverage: 89.389% (+0.02%) from 89.37%
26864473078

push

github

web-flow
Merge pull request #5639 from randombit/jack/sm4-hwaes-ks

Add hwaes hook for SM4 key schedule

110434 of 123543 relevant lines covered (89.39%)

11152828.24 hits per line

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

98.38
/src/lib/utils/bitvector/bitvector.h
1
/*
2
 * An abstraction for an arbitrarily large bitvector that can
3
 * optionally use the secure_allocator. All bitwise accesses and all
4
 * constructors are implemented in constant time. Otherwise, only methods
5
 * with the "ct_" pre-fix run in constant time.
6
 *
7
 * (C) 2023-2024 Jack Lloyd
8
 * (C) 2023-2024 René Meusel, Rohde & Schwarz Cybersecurity
9
 *
10
 * Botan is released under the Simplified BSD License (see license.txt)
11
 */
12

13
#ifndef BOTAN_BIT_VECTOR_H_
14
#define BOTAN_BIT_VECTOR_H_
15

16
#include <botan/concepts.h>
17
#include <botan/exceptn.h>
18
#include <botan/mem_ops.h>
19
#include <botan/secmem.h>
20
#include <botan/strong_type.h>
21
#include <botan/internal/bit_ops.h>
22
#include <botan/internal/ct_utils.h>
23
#include <botan/internal/int_utils.h>
24
#include <botan/internal/loadstor.h>
25
#include <botan/internal/stl_util.h>
26

27
#include <memory>
28
#include <optional>
29
#include <span>
30
#include <sstream>
31
#include <string>
32
#include <utility>
33
#include <vector>
34

35
namespace Botan {
36

37
template <template <typename> typename AllocatorT>
38
class bitvector_base;
39

40
template <typename T>
41
struct is_bitvector : std::false_type {};
42

43
template <template <typename> typename T>
44
struct is_bitvector<bitvector_base<T>> : std::true_type {};
45

46
template <typename T>
47
constexpr static bool is_bitvector_v = is_bitvector<T>::value;
48

49
template <typename T>
50
concept bitvectorish = is_bitvector_v<strong_type_wrapped_type<T>>;
51

52
namespace detail {
53

54
template <typename T0, typename... Ts>
55
struct first_type {
56
      using type = T0;
57
};
58

59
// get the first type from a parameter pack
60
// TODO: C++26 will bring Parameter Pack indexing:
61
//       using first_t = Ts...[0];
62
template <typename... Ts>
63
   requires(sizeof...(Ts) > 0)
64
using first_t = typename first_type<Ts...>::type;
65

66
// get the first object from a parameter pack
67
// TODO: C++26 will bring Parameter Pack indexing:
68
//       auto first = s...[0];
69
template <typename T0, typename... Ts>
70
constexpr static first_t<T0, Ts...> first(T0&& t, Ts&&... /*rest*/) {
71
   return std::forward<T0>(t);
72
}
73

74
template <typename OutT, typename>
75
using as = OutT;
76

77
template <typename FnT, std::unsigned_integral BlockT, typename... ParamTs>
78
using blockwise_processing_callback_return_type = std::invoke_result_t<FnT, as<BlockT, ParamTs>...>;
79

80
template <typename FnT, typename BlockT, typename... ParamTs>
81
concept is_blockwise_processing_callback_return_type =
82
   std::unsigned_integral<BlockT> &&
83
   (std::same_as<BlockT, blockwise_processing_callback_return_type<FnT, BlockT, ParamTs...>> ||
84
    std::same_as<bool, blockwise_processing_callback_return_type<FnT, BlockT, ParamTs...>> ||
85
    std::same_as<void, blockwise_processing_callback_return_type<FnT, BlockT, ParamTs...>>);
86

87
template <typename FnT, typename... ParamTs>
88
concept blockwise_processing_callback_without_mask =
89
   is_blockwise_processing_callback_return_type<FnT, uint8_t, ParamTs...> &&
90
   is_blockwise_processing_callback_return_type<FnT, uint16_t, ParamTs...> &&
91
   is_blockwise_processing_callback_return_type<FnT, uint32_t, ParamTs...> &&
92
   is_blockwise_processing_callback_return_type<FnT, uint64_t, ParamTs...>;
93

94
template <typename FnT, typename... ParamTs>
95
concept blockwise_processing_callback_with_mask =
96
   is_blockwise_processing_callback_return_type<FnT, uint8_t, ParamTs..., uint8_t /* mask */> &&
97
   is_blockwise_processing_callback_return_type<FnT, uint16_t, ParamTs..., uint16_t /* mask */> &&
98
   is_blockwise_processing_callback_return_type<FnT, uint32_t, ParamTs..., uint32_t /* mask */> &&
99
   is_blockwise_processing_callback_return_type<FnT, uint64_t, ParamTs..., uint64_t /* mask */>;
100

101
/**
102
 * Defines the callback constraints for the BitRangeOperator. For further
103
 * details, see bitvector_base::range_operation().
104
 */
105
template <typename FnT, typename... ParamTs>
106
concept blockwise_processing_callback = blockwise_processing_callback_with_mask<FnT, ParamTs...> ||
107
                                        blockwise_processing_callback_without_mask<FnT, ParamTs...>;
108

109
template <typename FnT, typename... ParamTs>
110
concept manipulating_blockwise_processing_callback =
111
   (blockwise_processing_callback_without_mask<FnT, ParamTs...> &&
112
    std::same_as<uint32_t, blockwise_processing_callback_return_type<FnT, uint32_t, ParamTs...>>) ||
113
   (blockwise_processing_callback_with_mask<FnT, ParamTs...> &&
114
    std::same_as<uint32_t, blockwise_processing_callback_return_type<FnT, uint32_t, ParamTs..., first_t<ParamTs...>>>);
115

116
template <typename FnT, typename... ParamTs>
117
concept predicate_blockwise_processing_callback =
118
   (blockwise_processing_callback_without_mask<FnT, ParamTs...> &&
119
    std::same_as<bool, blockwise_processing_callback_return_type<FnT, uint32_t, ParamTs...>>) ||
120
   (blockwise_processing_callback_with_mask<FnT, ParamTs...> &&
121
    std::same_as<bool, blockwise_processing_callback_return_type<FnT, uint32_t, ParamTs..., first_t<ParamTs...>>>);
122

123
template <typename T>
124
class bitvector_iterator {
125
   private:
126
      using size_type = typename T::size_type;
127

128
   public:
129
      using difference_type = std::make_signed_t<size_type>;
130
      using value_type = std::remove_const_t<decltype(std::declval<T>().at(0))>;
131
      using pointer = value_type*;
132
      using reference = value_type&;
133

134
      // TODO: technically, this could be a random access iterator
135
      using iterator_category = std::bidirectional_iterator_tag;
136

137
   public:
138
      bitvector_iterator() = default;
139
      ~bitvector_iterator() = default;
140

141
      bitvector_iterator(T* bitvector, size_t offset) : m_bitvector(bitvector) { update(offset); }
1,589✔
142

143
      bitvector_iterator(const bitvector_iterator& other) noexcept : m_bitvector(other.m_bitvector) {
2,002✔
144
         update(other.m_offset);
2,004✔
145
      }
146

147
      bitvector_iterator(bitvector_iterator&& other) noexcept : m_bitvector(other.m_bitvector) {
148
         update(other.m_offset);
149
      }
150

151
      bitvector_iterator& operator=(const bitvector_iterator& other) noexcept {
152
         if(this != &other) {
153
            m_bitvector = other.m_bitvector;
154
            update(other.m_offset);
155
         }
156
         return *this;
157
      }
158

159
      bitvector_iterator& operator=(bitvector_iterator&& other) noexcept {
160
         m_bitvector = other.m_bitvector;
161
         update(other.m_offset);
162
         return *this;
163
      }
164

165
      bitvector_iterator& operator++() noexcept {
252,223✔
166
         update(signed_offset() + 1);
504,473✔
167
         return *this;
168
      }
169

170
      bitvector_iterator operator++(int) noexcept {
6✔
171
         auto copy = *this;
6✔
172
         update(signed_offset() + 1);
12✔
173
         return copy;
6✔
174
      }
175

176
      bitvector_iterator& operator--() noexcept {
6✔
177
         update(signed_offset() - 1);
12✔
178
         return *this;
179
      }
180

181
      bitvector_iterator operator--(int) noexcept {
182
         auto copy = *this;
183
         update(signed_offset() - 1);
184
         return copy;
185
      }
186

187
      std::partial_ordering operator<=>(const bitvector_iterator& other) const noexcept {
188
         if(m_bitvector == other.m_bitvector) {
189
            return m_offset <=> other.m_offset;
190
         } else {
191
            return std::partial_ordering::unordered;
192
         }
193
      }
194

195
      bool operator==(const bitvector_iterator& other) const noexcept {
253,264✔
196
         return m_bitvector == other.m_bitvector && m_offset == other.m_offset;
252,736✔
197
      }
198

199
      reference operator*() const { return m_bitref.value(); }
2,378✔
200

201
      pointer operator->() const { return &(m_bitref.value()); }
256✔
202

203
   private:
204
      void update(size_type new_offset) {
524✔
205
         m_offset = new_offset;
1,029✔
206
         if(m_offset < m_bitvector->size()) {
1,506✔
207
            m_bitref.emplace((*m_bitvector)[m_offset]);
254,244✔
208
         } else {
209
            // end() iterator
210
            m_bitref.reset();
251,783✔
211
         }
212
      }
213

214
      difference_type signed_offset() const { return static_cast<difference_type>(m_offset); }
6✔
215

216
   private:
217
      T* m_bitvector;
218
      size_type m_offset;
219
      mutable std::optional<value_type> m_bitref;
220
};
221

222
}  // namespace detail
223

224
/**
225
 * An arbitrarily large bitvector with typical bit manipulation and convenient
226
 * bitwise access methods. Don't use `bitvector_base` directly, but the type
227
 * aliases::
228
 *
229
 *    * bitvector         - with a standard allocator
230
 *    * secure_bitvector  - with a secure allocator that auto-scrubs the memory
231
 */
232
template <template <typename> typename AllocatorT>
233
class bitvector_base final {
1,055,168✔
234
   public:
235
      using block_type = uint8_t;
236
      using size_type = size_t;
237
      using allocator_type = AllocatorT<block_type>;
238
      using value_type = block_type;
239
      using iterator = detail::bitvector_iterator<bitvector_base<AllocatorT>>;
240
      using const_iterator = detail::bitvector_iterator<const bitvector_base<AllocatorT>>;
241

242
      static constexpr size_type block_size_bytes = sizeof(block_type);
243
      static constexpr size_type block_size_bits = block_size_bytes * 8;
244
      static constexpr bool uses_secure_allocator = std::is_same_v<allocator_type, secure_allocator<block_type>>;
245

246
   private:
247
      template <template <typename> typename FriendAllocatorT>
248
      friend class bitvector_base;
249

250
      static constexpr block_type one = block_type(1);
251

252
      static constexpr size_type block_offset_shift = size_type(3) + ceil_log2(block_size_bytes);
253
      static constexpr size_type block_index_mask = (one << block_offset_shift) - 1;
254

255
      static constexpr size_type block_index(size_type pos) { return pos >> block_offset_shift; }
21,179,056✔
256

257
      static constexpr size_type block_offset(size_type pos) { return pos & block_index_mask; }
1,378,021,885✔
258

259
   private:
260
      /**
261
       * Internal helper to wrap a single bit in the bitvector and provide
262
       * certain convenience access methods.
263
       */
264
      template <typename BlockT>
265
         requires std::same_as<block_type, std::remove_cv_t<BlockT>>
266
      class bitref_base {
267
         private:
268
            friend class bitvector_base<AllocatorT>;
269

270
            constexpr bitref_base(std::span<BlockT> blocks, size_type pos) noexcept :
1,835,371,768✔
271
                  m_block(blocks[block_index(pos)]), m_mask(one << block_offset(pos)) {}
1,835,371,768✔
272

273
         public:
274
            bitref_base() = delete;
275
            bitref_base(const bitref_base&) noexcept = default;
276
            bitref_base(bitref_base&&) noexcept = default;
277
            bitref_base& operator=(const bitref_base&) = delete;
278
            bitref_base& operator=(bitref_base&&) = delete;
279

280
            ~bitref_base() = default;
281

282
         public:
283
            // NOLINTNEXTLINE(*-explicit-conversions)
284
            constexpr operator bool() const noexcept { return is_set(); }
13,553,579✔
285

286
            constexpr bool is_set() const noexcept { return (m_block & m_mask) > 0; }
13,553,607✔
287

288
            template <std::unsigned_integral T>
289
            constexpr T as() const noexcept {
312,633✔
290
               return static_cast<T>(is_set());
119,250✔
291
            }
292

293
            constexpr CT::Choice as_choice() const noexcept {
455,738,086✔
294
               return CT::Choice::from_int(static_cast<BlockT>(m_block & m_mask));
455,738,086✔
295
            }
296

297
         protected:
298
            BlockT& m_block;  // NOLINT(*-non-private-member-variable*)
299
            BlockT m_mask;    // NOLINT(*-non-private-member-variable*)
300
      };
301

302
   public:
303
      /**
304
       * Wraps a constant reference into the bitvector. Bit can be accessed
305
       * but not modified.
306
       */
307
      template <typename BlockT>
308
      class bitref final : public bitref_base<BlockT> {
309
         public:
310
            using bitref_base<BlockT>::bitref_base;
12,641,743✔
311
      };
312

313
      /**
314
       * Wraps a modifiable reference into the bitvector. Bit may be accessed
315
       * and modified (e.g. flipped or XOR'ed).
316
       *
317
       * Constant-time operations are used for the bit manipulations. The
318
       * location of the bit in the bit vector may be leaked, though.
319
       */
320
      template <typename BlockT>
321
         requires(!std::is_const_v<BlockT>)
322
      class bitref<BlockT> : public bitref_base<BlockT> {
323
         public:
324
            using bitref_base<BlockT>::bitref_base;
1,365,653,150✔
325

326
            ~bitref() = default;
327
            bitref(const bitref&) noexcept = default;
328
            bitref(bitref&&) noexcept = default;
329

330
            constexpr bitref& set() noexcept {
377✔
331
               this->m_block |= this->m_mask;
39✔
332
               return *this;
250✔
333
            }
334

335
            constexpr bitref& unset() noexcept {
6✔
336
               this->m_block &= ~this->m_mask;
1✔
337
               return *this;
338
            }
339

340
            constexpr bitref& flip() noexcept {
18✔
341
               this->m_block ^= this->m_mask;
7✔
342
               return *this;
343
            }
344

345
            // NOLINTBEGIN
346

347
            constexpr bitref& operator=(bool bit) noexcept {
1,365,436,399✔
348
               this->m_block =
1,365,436,399✔
349
                  CT::Mask<BlockT>::expand(bit).select(this->m_mask | this->m_block, this->m_block & ~this->m_mask);
1,365,436,399✔
350
               return *this;
1,365,436,399✔
351
            }
352

353
            constexpr bitref& operator=(const bitref& bit) noexcept { return *this = bit.is_set(); }
354

355
            constexpr bitref& operator=(bitref&& bit) noexcept { return *this = bit.is_set(); }
356

357
            // NOLINTEND
358

359
            constexpr bitref& operator&=(bool other) noexcept {
4✔
360
               this->m_block &= ~CT::Mask<BlockT>::expand(other).if_not_set_return(this->m_mask);
4✔
361
               return *this;
4✔
362
            }
363

364
            constexpr bitref& operator|=(bool other) noexcept {
1✔
365
               this->m_block |= CT::Mask<BlockT>::expand(other).if_set_return(this->m_mask);
1✔
366
               return *this;
367
            }
368

369
            constexpr bitref& operator^=(bool other) noexcept {
79,045✔
370
               this->m_block ^= CT::Mask<BlockT>::expand(other).if_set_return(this->m_mask);
79,045✔
371
               return *this;
372
            }
373
      };
374

375
   public:
376
      bitvector_base() : m_bits(0) {}
78✔
377

378
      explicit bitvector_base(size_type bits) : m_bits(bits), m_blocks(ceil_toblocks(bits)) {}
386,189✔
379

380
      /**
381
       * Initialize the bitvector from a byte-array. Bits are taken byte-wise
382
       * from least significant to most significant. Example::
383
       *
384
       *    bitvector[0] -> LSB(Byte[0])
385
       *    bitvector[1] -> LSB+1(Byte[0])
386
       *    ...
387
       *    bitvector[8] -> LSB(Byte[1])
388
       *
389
       * @param bytes The byte vector to be loaded
390
       * @param bits  The number of bits to be loaded. This must not be more
391
       *              than the number of bytes in @p bytes.
392
       */
393
      bitvector_base(std::span<const uint8_t> bytes, /* NOLINT(*-explicit-conversions) */
80,942✔
394
                     std::optional<size_type> bits = std::nullopt) :
395
            m_bits() {
80,942✔
396
         from_bytes(bytes, bits);
80,942✔
397
      }
80,942✔
398

399
      bitvector_base(std::initializer_list<block_type> blocks, std::optional<size_type> bits = std::nullopt) :
202✔
400
            m_bits(bits.value_or(blocks.size() * block_size_bits)), m_blocks(blocks.begin(), blocks.end()) {}
202✔
401

402
      bool empty() const { return m_bits == 0; }
6✔
403

404
      size_type size() const { return m_bits; }
8,456,157✔
405

406
      /**
407
       * @returns true iff the number of 1-bits in this is odd, false otherwise (constant time)
408
       */
409
      CT::Choice has_odd_hamming_weight() const {
79,047✔
410
         uint64_t acc = 0;
79,047✔
411
         full_range_operation([&](std::unsigned_integral auto block) { acc ^= block; }, *this);
79,047✔
412

413
         for(size_t i = (sizeof(acc) * 8) >> 1; i > 0; i >>= 1) {
553,329✔
414
            acc ^= acc >> i;
474,282✔
415
         }
416

417
         return CT::Choice::from_int(acc & one);
79,047✔
418
      }
419

420
      /**
421
       * Counts the number of 1-bits in the bitvector in constant time.
422
       * @returns the "population count" (or hamming weight) of the bitvector
423
       */
424
      size_type hamming_weight() const {
155✔
425
         size_type acc = 0;
155✔
426
         full_range_operation([&](std::unsigned_integral auto block) { acc += ct_popcount(block); }, *this);
93✔
427
         return acc;
138✔
428
      }
429

430
      /**
431
       * @returns copies this bitvector into a new bitvector of type @p OutT
432
       */
433
      template <bitvectorish OutT>
434
      OutT as() const {
135✔
435
         return subvector<OutT>(0, size());
234✔
436
      }
437

438
      /**
439
       * @returns true if @p other contains the same bit pattern as this
440
       */
441
      template <bitvectorish OtherT>
442
      bool equals_vartime(const OtherT& other) const noexcept {
12✔
443
         return size() == other.size() &&
14✔
444
                full_range_operation([]<std::unsigned_integral BlockT>(BlockT lhs, BlockT rhs) { return lhs == rhs; },
14✔
445
                                     *this,
446
                                     unwrap_strong_type(other));
447
      }
448

449
      /**
450
       * @returns true if @p other contains the same bit pattern as this
451
       */
452
      template <bitvectorish OtherT>
453
      bool equals(const OtherT& other) const noexcept {
47✔
454
         return (*this ^ other).none();
47✔
455
      }
456

457
      /// @name Serialization
458
      /// @{
459

460
      /**
461
       * Re-initialize the bitvector with the given bytes. See the respective
462
       * constructor for details. This should be used only when trying to save
463
       * allocations. Otherwise, use the constructor.
464
       *
465
       * @param bytes  the byte range to load bits from
466
       * @param bits   (optional) if not all @p bytes should be loaded in full
467
       */
468
      void from_bytes(std::span<const uint8_t> bytes, std::optional<size_type> bits = std::nullopt) {
80,942✔
469
         const size_type new_bits = bits.has_value()
161,884✔
470
                                       ? bits.value()
80,942✔
471
                                       : mul_or_throw<size_t>(8, bytes.size_bytes(), "bitvector input is too large");
1,766✔
472
         const size_type bytes_needed = (new_bits / 8) + (new_bits % 8 != 0 ? 1 : 0);
143,306✔
473
         BOTAN_ARG_CHECK(bytes_needed <= bytes.size_bytes(), "not enough data to load so many bits");
80,942✔
474
         resize(new_bits);
80,942✔
475

476
         // load as much aligned data as possible
477
         const auto verbatim_blocks = new_bits / block_size_bits;
80,942✔
478
         const auto verbatim_bytes = verbatim_blocks * block_size_bytes;
80,942✔
479
         if(verbatim_blocks > 0) {
80,942✔
480
            typecast_copy(std::span{m_blocks}.first(verbatim_blocks), bytes.first(verbatim_bytes));
80,941✔
481
         }
482

483
         // load remaining unaligned data
484
         for(size_type i = verbatim_bytes * 8; i < new_bits; ++i) {
173,806✔
485
            ref(i) = ((bytes[i >> 3] & (uint8_t(1) << (i & 7))) != 0);
92,864✔
486
         }
487
      }
80,942✔
488

489
      /**
490
       * Renders the bitvector into a byte array. By default, this will use
491
       * `std::vector<uint8_t>` or `Botan::secure_vector<uint8_t>`, depending on
492
       * the allocator used by the bitvector. The rendering is compatible with
493
       * the bit layout explained in the respective constructor.
494
       */
495
      template <concepts::resizable_byte_buffer OutT =
496
                   std::conditional_t<uses_secure_allocator, secure_vector<uint8_t>, std::vector<uint8_t>>>
497
      OutT to_bytes() const {
328✔
498
         OutT out(ceil_tobytes(m_bits));
328✔
499
         to_bytes(out);
328✔
500
         return out;
328✔
501
      }
×
502

503
      /**
504
       * Renders the bitvector into a properly sized byte range.
505
       *
506
       * @param out  a byte range that has a length of at least `ceil_tobytes(size())`.
507
       */
508
      void to_bytes(std::span<uint8_t> out) const {
128,535✔
509
         const auto bytes_needed = ceil_tobytes(m_bits);
128,535✔
510
         BOTAN_ARG_CHECK(bytes_needed <= out.size_bytes(), "Not enough space to render bitvector");
128,535✔
511

512
         // copy as much aligned data as possible
513
         const auto verbatim_blocks = m_bits / block_size_bits;
128,535✔
514
         const auto verbatim_bytes = verbatim_blocks * block_size_bytes;
128,535✔
515
         if(verbatim_blocks > 0) {
128,535✔
516
            typecast_copy(out.first(verbatim_bytes), std::span{m_blocks}.first(verbatim_blocks));
128,532✔
517
         }
518

519
         // copy remaining unaligned data
520
         clear_mem(out.subspan(verbatim_bytes));
128,535✔
521
         for(size_type i = verbatim_bytes * 8; i < m_bits; ++i) {
321,954✔
522
            out[i >> 3] |= ref(i).template as<uint8_t>() << (i & 7);
193,419✔
523
         }
524
      }
128,535✔
525

526
      /**
527
       * Renders this bitvector into a sequence of "0"s and "1"s.
528
       * This is meant for debugging purposes and is not efficient.
529
       */
530
      std::string to_string() const {
1✔
531
         std::stringstream ss;
1✔
532
         for(size_type i = 0; i < size(); ++i) {
6✔
533
            ss << ref(i);
5✔
534
         }
535
         return ss.str();
1✔
536
      }
1✔
537

538
      /// @}
539

540
      /// @name Capacity Accessors and Modifiers
541
      /// @{
542

543
      size_type capacity() const { return m_blocks.capacity() * block_size_bits; }
6✔
544

545
      void reserve(size_type bits) { m_blocks.reserve(ceil_toblocks(bits)); }
219✔
546

547
      void resize(size_type bits) {
478,325✔
548
         const auto new_number_of_blocks = ceil_toblocks(bits);
478,325✔
549
         const auto old_number_of_blocks = m_blocks.size();
478,325✔
550
         if(new_number_of_blocks > old_number_of_blocks) {
478,325✔
551
            m_blocks.insert(m_blocks.end(), new_number_of_blocks - old_number_of_blocks, block_type(0));
130,681✔
552
         } else if(new_number_of_blocks < old_number_of_blocks) {
347,644✔
553
            m_blocks.erase(m_blocks.begin() + new_number_of_blocks, m_blocks.end());
3✔
554
         }
555

556
         m_bits = bits;
478,325✔
557
         zero_unused_bits();
478,325✔
558
      }
478,325✔
559

560
      void push_back(bool bit) {
397,295✔
561
         const auto i = size();
397,295✔
562
         resize(i + 1);
397,295✔
563
         ref(i) = bit;
794,590✔
564
      }
397,295✔
565

566
      void pop_back() {
9✔
567
         if(!empty()) {
9✔
568
            resize(size() - 1);
9✔
569
         }
570
      }
571

572
      /// @}
573

574
      /// @name Bitwise and Global Accessors and Modifiers
575
      /// @{
576

577
      auto at(size_type pos) {
464,633,961✔
578
         check_offset(pos);
464,633,957✔
579
         return ref(pos);
464,633,712✔
580
      }
581

582
      // TODO C++23: deducing this
583
      auto at(size_type pos) const {
890,817✔
584
         check_offset(pos);
890,816✔
585
         return ref(pos);
890,816✔
586
      }
587

588
      auto front() { return ref(0); }
2✔
589

590
      // TODO C++23: deducing this
591
      auto front() const { return ref(0); }
592

593
      auto back() { return ref(size() - 1); }
5✔
594

595
      // TODO C++23: deducing this
596
      auto back() const { return ref(size() - 1); }
597

598
      /**
599
       * Sets the bit at position @p pos.
600
       * @throws Botan::Invalid_Argument if @p pos is out of range
601
       */
602
      bitvector_base& set(size_type pos) {
89✔
603
         check_offset(pos);
88✔
604
         ref(pos).set();
54✔
605
         return *this;
35✔
606
      }
607

608
      /**
609
       * Sets all currently allocated bits.
610
       */
611
      bitvector_base& set() {
2✔
612
         full_range_operation(
2✔
613
            [](std::unsigned_integral auto block) -> decltype(block) {
2✔
614
               return static_cast<decltype(block)>(~static_cast<decltype(block)>(0));
615
            },
616
            *this);
617
         zero_unused_bits();
2✔
618
         return *this;
2✔
619
      }
620

621
      /**
622
       * Unsets the bit at position @p pos.
623
       * @throws Botan::Invalid_Argument if @p pos is out of range
624
       */
625
      bitvector_base& unset(size_type pos) {
6✔
626
         check_offset(pos);
5✔
627
         ref(pos).unset();
5✔
628
         return *this;
5✔
629
      }
630

631
      /**
632
       * Unsets all currently allocated bits.
633
       */
634
      bitvector_base& unset() {
4✔
635
         full_range_operation(
4✔
636
            [](std::unsigned_integral auto block) -> decltype(block) { return static_cast<decltype(block)>(0); },
4✔
637
            *this);
638
         return *this;
639
      }
640

641
      /**
642
       * Flips the bit at position @p pos.
643
       * @throws Botan::Invalid_Argument if @p pos is out of range
644
       */
645
      bitvector_base& flip(size_type pos) {
12✔
646
         check_offset(pos);
11✔
647
         ref(pos).flip();
11✔
648
         return *this;
11✔
649
      }
650

651
      /**
652
       * Flips all currently allocated bits.
653
       */
654
      bitvector_base& flip() {
5✔
655
         full_range_operation([](std::unsigned_integral auto block) -> decltype(block) { return ~block; }, *this);
5✔
656
         zero_unused_bits();
5✔
657
         return *this;
5✔
658
      }
659

660
      /**
661
       * @returns true iff no bit is set
662
       */
663
      bool none_vartime() const {
13✔
664
         return full_range_operation([](std::unsigned_integral auto block) { return block == 0; }, *this);
6✔
665
      }
666

667
      /**
668
       * @returns true iff no bit is set in constant time
669
       */
670
      bool none() const { return hamming_weight() == 0; }
52✔
671

672
      /**
673
       * @returns true iff at least one bit is set
674
       */
675
      bool any_vartime() const { return !none_vartime(); }
7✔
676

677
      /**
678
       * @returns true iff at least one bit is set in constant time
679
       */
680
      bool any() const { return !none(); }
5✔
681

682
      /**
683
       * @returns true iff all bits are set
684
       */
685
      bool all_vartime() const {
7✔
686
         return full_range_operation(
7✔
687
            []<std::unsigned_integral BlockT>(BlockT block, BlockT mask) { return block == mask; }, *this);
6✔
688
      }
689

690
      /**
691
       * @returns true iff all bits are set in constant time
692
       */
693
      bool all() const { return hamming_weight() == m_bits; }
5✔
694

695
      auto operator[](size_type pos) { return ref(pos); }
1,356,714,982✔
696

697
      // TODO C++23: deducing this
698
      auto operator[](size_type pos) const { return ref(pos); }
12,448,319✔
699

700
      /// @}
701

702
      /// @name Subvectors
703
      /// @{
704

705
      /**
706
       * Creates a new bitvector with a subsection of this bitvector starting at
707
       * @p pos copying exactly @p length bits.
708
       */
709
      template <bitvectorish OutT = bitvector_base<AllocatorT>>
710
      auto subvector(size_type pos, std::optional<size_type> length = std::nullopt) const {
128,423✔
711
         const size_type bitlen = length.value_or(size() - pos);
128,423✔
712
         BOTAN_ARG_CHECK(pos + bitlen <= size(), "Not enough bits to copy");
128,423✔
713

714
         OutT newvector(bitlen);
128,419✔
715

716
         // Handle bitvectors that are wrapped in strong types
717
         auto& newvector_unwrapped = unwrap_strong_type(newvector);
128,419✔
718

719
         if(bitlen > 0) {
128,419✔
720
            if(pos % 8 == 0) {
128,416✔
721
               copy_mem(
89,722✔
722
                  newvector_unwrapped.m_blocks,
89,722✔
723
                  std::span{m_blocks}.subspan(block_index(pos), block_index(pos + bitlen - 1) - block_index(pos) + 1));
89,722✔
724
            } else {
725
               const BitRangeOperator<const bitvector_base<AllocatorT>, BitRangeAlignment::no_alignment> from_op(
38,694✔
726
                  *this, pos, bitlen);
727
               const BitRangeOperator<strong_type_wrapped_type<OutT>> to_op(
38,694✔
728
                  unwrap_strong_type(newvector_unwrapped), 0, bitlen);
729
               range_operation([](auto /* to */, auto from) { return from; }, to_op, from_op);
38,694✔
730
            }
731

732
            newvector_unwrapped.zero_unused_bits();
128,419✔
733
         }
734

735
         return newvector;
128,419✔
736
      }
×
737

738
      /**
739
       * Extracts a subvector of bits as an unsigned integral type @p OutT
740
       * starting from bit @p pos and copying exactly sizeof(OutT)*8 bits.
741
       *
742
       * Hint: The bits are in big-endian order, i.e. the least significant bit
743
       *       is the 0th bit and the most significant bit it the n-th. Hence,
744
       *       addressing the bits with bitwise operations is done like so:
745
       *       bool bit = (out_int >> pos) & 1;
746
       */
747
      template <typename OutT>
748
         requires(std::unsigned_integral<strong_type_wrapped_type<OutT>> &&
749
                  !std::same_as<bool, strong_type_wrapped_type<OutT>>)
750
      OutT subvector(size_type pos) const {
74,960✔
751
         using result_t = strong_type_wrapped_type<OutT>;
752
         constexpr size_t bits = sizeof(result_t) * 8;
74,960✔
753
         BOTAN_ARG_CHECK(pos + bits <= size(), "Not enough bits to copy");
74,960✔
754
         result_t out = 0;
74,956✔
755

756
         if(pos % 8 == 0) {
74,956✔
757
            out = load_le<result_t>(std::span{m_blocks}.subspan(block_index(pos)).template first<sizeof(result_t)>());
48,648✔
758
         } else {
759
            const BitRangeOperator<const bitvector_base<AllocatorT>, BitRangeAlignment::no_alignment> op(
26,308✔
760
               *this, pos, bits);
761
            range_operation(
26,308✔
762
               [&](std::unsigned_integral auto integer) {
26,308✔
763
                  if constexpr(std::same_as<result_t, decltype(integer)>) {
764
                     out = integer;
26,308✔
765
                  }
766
               },
767
               op);
768
         }
769

770
         return wrap_strong_type<OutT>(out);
74,956✔
771
      }
772

773
      /**
774
       * Replaces a subvector of bits with the bits of another bitvector @p value
775
       * starting at bit @p pos. The number of bits to replace is determined by
776
       * the size of @p value.
777
       *
778
       * @note This is currently supported for byte-aligned @p pos only.
779
       *
780
       * @throws Not_Implemented when called with @p pos not divisible by 8.
781
       *
782
       * @param pos    the position to start replacing bits
783
       * @param value  the bitvector to copy bits from
784
       */
785
      template <typename InT>
786
         requires(std::unsigned_integral<strong_type_wrapped_type<InT>> && !std::same_as<bool, InT>)
787
      void subvector_replace(size_type pos, InT value) {
74,967✔
788
         using in_t = strong_type_wrapped_type<InT>;
789
         constexpr size_t bits = sizeof(in_t) * 8;
74,967✔
790
         BOTAN_ARG_CHECK(pos + bits <= size(), "Not enough bits to replace");
74,967✔
791

792
         if(pos % 8 == 0) {
74,963✔
793
            store_le(std::span{m_blocks}.subspan(block_index(pos)).template first<sizeof(in_t)>(),
48,650✔
794
                     unwrap_strong_type(value));
795
         } else {
796
            const BitRangeOperator<bitvector_base<AllocatorT>, BitRangeAlignment::no_alignment> op(*this, pos, bits);
26,313✔
797
            range_operation(
26,313✔
798
               [&]<std::unsigned_integral BlockT>(BlockT block) -> BlockT {
26,313✔
799
                  if constexpr(std::same_as<in_t, BlockT>) {
800
                     return unwrap_strong_type(value);
26,313✔
801
                  } else {
802
                     // This should never be reached. BOTAN_ASSERT_UNREACHABLE()
803
                     // caused warning "unreachable code" on MSVC, though. You
804
                     // don't say!
805
                     //
806
                     // Returning the given block back, is the most reasonable
807
                     // thing to do in this case, though.
808
                     return block;
809
                  }
810
               },
811
               op);
812
         }
813
      }
74,963✔
814

815
      /// @}
816

817
      /// @name Operators
818
      ///
819
      /// @{
820

821
      auto operator~() {
1✔
822
         auto newbv = *this;
1✔
823
         newbv.flip();
1✔
824
         return newbv;
1✔
825
      }
×
826

827
      template <bitvectorish OtherT>
828
      auto& operator|=(const OtherT& other) {
6✔
829
         full_range_operation([]<std::unsigned_integral BlockT>(BlockT lhs, BlockT rhs) -> BlockT { return lhs | rhs; },
2✔
830
                              *this,
831
                              unwrap_strong_type(other));
832
         return *this;
833
      }
834

835
      template <bitvectorish OtherT>
836
      auto& operator&=(const OtherT& other) {
79,049✔
837
         full_range_operation([]<std::unsigned_integral BlockT>(BlockT lhs, BlockT rhs) -> BlockT { return lhs & rhs; },
79,045✔
838
                              *this,
839
                              unwrap_strong_type(other));
840
         return *this;
841
      }
842

843
      template <bitvectorish OtherT>
844
      auto& operator^=(const OtherT& other) {
55✔
845
         full_range_operation([]<std::unsigned_integral BlockT>(BlockT lhs, BlockT rhs) -> BlockT { return lhs ^ rhs; },
136✔
846
                              *this,
847
                              unwrap_strong_type(other));
848
         return *this;
849
      }
850

851
      /// @}
852

853
      /// @name Constant Time Operations
854
      ///
855
      /// @{
856

857
      /**
858
       * Implements::
859
       *
860
       *    if(condition) {
861
       *       *this ^= other;
862
       *    }
863
       *
864
       * omitting runtime dependence on any of the parameters.
865
       */
866
      template <bitvectorish OtherT>
867
      void ct_conditional_xor(CT::Choice condition, const OtherT& other) {
459,890,604✔
868
         BOTAN_ASSERT_NOMSG(m_bits == other.m_bits);
459,890,604✔
869
         BOTAN_ASSERT_NOMSG(m_blocks.size() == other.m_blocks.size());
459,890,604✔
870

871
         auto maybe_xor = overloaded{
872
            [m = CT::Mask<uint64_t>::from_choice(condition)](uint64_t lhs, uint64_t rhs) -> uint64_t {
2,147,483,647✔
873
               return lhs ^ m.if_set_return(rhs);
2,147,483,647✔
874
            },
875
            [m = CT::Mask<uint32_t>::from_choice(condition)](uint32_t lhs, uint32_t rhs) -> uint32_t {
759,003,415✔
876
               return lhs ^ m.if_set_return(rhs);
299,112,811✔
877
            },
878
            [m = CT::Mask<uint16_t>::from_choice(condition)](uint16_t lhs, uint16_t rhs) -> uint16_t {
610,506,516✔
879
               return lhs ^ m.if_set_return(rhs);
150,615,912✔
880
            },
881
            [m = CT::Mask<uint8_t>::from_choice(condition)](uint8_t lhs, uint8_t rhs) -> uint8_t {
459,890,610✔
882
               return lhs ^ m.if_set_return(rhs);
6✔
883
            },
884
         };
885

886
         full_range_operation(maybe_xor, *this, unwrap_strong_type(other));
459,890,604✔
887
      }
459,890,604✔
888

889
      constexpr void _const_time_poison() const { CT::poison(m_blocks); }
71✔
890

891
      constexpr void _const_time_unpoison() const { CT::unpoison(m_blocks); }
98✔
892

893
      /// @}
894

895
      /// @name Iterators
896
      ///
897
      /// @{
898

899
      iterator begin() noexcept { return iterator(this, 0); }
1,067✔
900

901
      const_iterator begin() const noexcept { return const_iterator(this, 0); }
10✔
902

903
      const_iterator cbegin() const noexcept { return const_iterator(this, 0); }
10✔
904

905
      iterator end() noexcept { return iterator(this, size()); }
537✔
906

907
      const_iterator end() const noexcept { return const_iterator(this, size()); }
5✔
908

909
      const_iterator cend() noexcept { return const_iterator(this, size()); }
8✔
910

911
      /// @}
912

913
   private:
914
      void check_offset(size_type pos) const {
465,524,527✔
915
         // BOTAN_ASSERT_NOMSG(!CT::is_poisoned(&m_bits, sizeof(m_bits)));
916
         // BOTAN_ASSERT_NOMSG(!CT::is_poisoned(&pos, sizeof(pos)));
917
         BOTAN_ARG_CHECK(pos < m_bits, "Out of range");
465,524,851✔
918
      }
919

920
      void zero_unused_bits() {
606,748✔
921
         const auto first_unused_bit = size();
606,748✔
922

923
         // Zero out any unused bits in the last block
924
         if(first_unused_bit % block_size_bits != 0) {
606,748✔
925
            const block_type mask = (one << block_offset(first_unused_bit)) - one;
404,956✔
926
            m_blocks[block_index(first_unused_bit)] &= mask;
404,956✔
927
         }
928
      }
929

930
      static constexpr size_type ceil_toblocks(size_type bits) {
607,175✔
931
         return add_or_throw(bits, block_size_bits - 1, "bitvector size is too large") / block_size_bits;
607,175✔
932
      }
933

934
      auto ref(size_type pos) const { return bitref<const block_type>(m_blocks, pos); }
12,641,743✔
935

936
      auto ref(size_type pos) { return bitref<block_type>(m_blocks, pos); }
1,365,653,150✔
937

938
   private:
939
      enum class BitRangeAlignment : uint8_t { byte_aligned, no_alignment };
940

941
      /**
942
       * Helper construction to implement bit range operations on the bitvector.
943
       * It basically implements an iterator to read and write blocks of bits
944
       * from the underlying bitvector. Where "blocks of bits" are unsigned
945
       * integers of varying bit lengths.
946
       *
947
       * If the iteration starts at a byte boundary in the underlying bitvector,
948
       * this applies certain optimizations (i.e. loading blocks of bits straight
949
       * from the underlying byte buffer). The optimizations are enabled at
950
       * compile time (with the template parameter `alignment`).
951
       */
952
      template <typename BitvectorT, auto alignment = BitRangeAlignment::byte_aligned>
953
         requires is_bitvector_v<std::remove_cvref_t<BitvectorT>>
954
      class BitRangeOperator {
955
         private:
956
            constexpr static bool is_const() { return std::is_const_v<BitvectorT>; }
957

958
            struct UnalignedDataHelper {
959
                  const uint8_t padding_bits;
960
                  const uint8_t bits_to_byte_alignment;
961
            };
962

963
         public:
964
            BitRangeOperator(BitvectorT& source, size_type start_bitoffset, size_type bitlength) :
920,148,694✔
965
                  m_source(source),
920,148,694✔
966
                  m_start_bitoffset(start_bitoffset),
920,148,694✔
967
                  m_bitlength(bitlength),
920,148,694✔
968
                  m_unaligned_helper({.padding_bits = static_cast<uint8_t>(start_bitoffset % 8),
920,148,694✔
969
                                      .bits_to_byte_alignment = static_cast<uint8_t>(8 - (start_bitoffset % 8))}),
920,148,694✔
970
                  m_read_bitpos(start_bitoffset),
920,148,694✔
971
                  m_write_bitpos(start_bitoffset) {
920,148,694✔
972
               BOTAN_ASSERT(is_byte_aligned() == (m_start_bitoffset % 8 == 0), "byte alignment guarantee");
920,148,694✔
973
               BOTAN_ASSERT(m_source.size() >= m_start_bitoffset + m_bitlength, "enough bytes in underlying source");
920,148,694✔
974
            }
920,148,694✔
975

976
            explicit BitRangeOperator(BitvectorT& source) : BitRangeOperator(source, 0, source.size()) {}
920,018,685✔
977

978
            static constexpr bool is_byte_aligned() { return alignment == BitRangeAlignment::byte_aligned; }
979

980
            /**
981
             * @returns the overall number of bits to be iterated with this operator
982
             */
983
            size_type size() const { return m_bitlength; }
460,008,420✔
984

985
            /**
986
             * @returns the number of bits not yet read from this operator
987
             */
988
            size_type bits_to_read() const { return m_bitlength - m_read_bitpos + m_start_bitoffset; }
1,847,323,679✔
989

990
            /**
991
             * @returns the number of bits still to be written into this operator
992
             */
993
            size_type bits_to_write() const { return m_bitlength - m_write_bitpos + m_start_bitoffset; }
3,398,320✔
994

995
            /**
996
             * Loads the next block of bits from the underlying bitvector. No
997
             * bounds checks are performed. The caller can define the size of
998
             * the resulting unsigned integer block.
999
             */
1000
            template <std::unsigned_integral BlockT>
1001
            BlockT load_next() const {
6,762,620✔
1002
               constexpr size_type block_size = sizeof(BlockT);
6,762,620✔
1003
               constexpr size_type block_bits = block_size * 8;
6,762,620✔
1004
               const auto bits_remaining = bits_to_read();
6,762,620✔
1005

1006
               BlockT result_block = 0;
6,762,620✔
1007
               if constexpr(is_byte_aligned()) {
1008
                  result_block = load_le(m_source.as_byte_span().subspan(read_bytepos()).template first<block_size>());
3,382,906✔
1009
               } else {
1010
                  const size_type byte_pos = read_bytepos();
3,379,714✔
1011
                  const size_type bits_to_collect = std::min(block_bits, bits_to_read());
6,759,428✔
1012

1013
                  const uint8_t first_byte = m_source.as_byte_span()[byte_pos];
3,379,714✔
1014

1015
                  // Initialize the left-most bits from the first byte.
1016
                  result_block = BlockT(first_byte) >> m_unaligned_helper.padding_bits;
3,379,714✔
1017

1018
                  // If more bits are needed, we pull them from the remaining bytes.
1019
                  if(m_unaligned_helper.bits_to_byte_alignment < bits_to_collect) {
3,379,714✔
1020
                     const BlockT block =
1021
                        load_le(m_source.as_byte_span().subspan(byte_pos + 1).template first<block_size>());
6,682,042✔
1022
                     result_block |= block << m_unaligned_helper.bits_to_byte_alignment;
3,341,024✔
1023
                  }
1024
               }
1025

1026
               m_read_bitpos += std::min(block_bits, bits_remaining);
6,762,620✔
1027
               return result_block;
6,668,117✔
1028
            }
1029

1030
            /**
1031
             * Stores the next block of bits into the underlying bitvector.
1032
             * No bounds checks are performed. Storing bit blocks that are not
1033
             * aligned at a byte-boundary in the underlying bitvector is
1034
             * currently not implemented.
1035
             */
1036
            template <std::unsigned_integral BlockT>
1037
               requires(!is_const())
1038
            void store_next(BlockT block) {
3,372,007✔
1039
               constexpr size_type block_size = sizeof(BlockT);
3,372,007✔
1040
               constexpr size_type block_bits = block_size * 8;
3,372,007✔
1041

1042
               if constexpr(is_byte_aligned()) {
1043
                  auto sink = m_source.as_byte_span().subspan(write_bytepos()).template first<block_size>();
3,345,694✔
1044
                  store_le(sink, block);
3,345,694✔
1045
               } else {
1046
                  const size_type byte_pos = write_bytepos();
26,313✔
1047
                  const size_type bits_to_store = std::min(block_bits, bits_to_write());
52,626✔
1048

1049
                  uint8_t& first_byte = m_source.as_byte_span()[byte_pos];
26,313✔
1050

1051
                  // Set the left-most bits in the first byte, leaving all others unchanged
1052
                  first_byte = (first_byte & uint8_t(0xFF >> m_unaligned_helper.bits_to_byte_alignment)) |
26,313✔
1053
                               uint8_t(block << m_unaligned_helper.padding_bits);
26,313✔
1054

1055
                  // If more bits are provided, we store them in the remaining bytes.
1056
                  if(m_unaligned_helper.bits_to_byte_alignment < bits_to_store) {
26,313✔
1057
                     const auto remaining_bytes =
1058
                        m_source.as_byte_span().subspan(byte_pos + 1).template first<block_size>();
26,313✔
1059
                     const BlockT padding_mask = ~(BlockT(-1) >> m_unaligned_helper.bits_to_byte_alignment);
26,313✔
1060
                     const BlockT new_bytes =
26,313✔
1061
                        (load_le(remaining_bytes) & padding_mask) | block >> m_unaligned_helper.bits_to_byte_alignment;
26,313✔
1062
                     store_le(remaining_bytes, new_bytes);
26,313✔
1063
                  }
1064
               }
1065

1066
               m_write_bitpos += std::min(block_bits, bits_to_write());
3,372,007✔
1067
            }
3,372,007✔
1068

1069
            template <std::unsigned_integral BlockT>
1070
               requires(is_byte_aligned() && !is_const())
1071
            std::span<BlockT> span(size_type blocks) const {
1,379,909,175✔
1072
               BOTAN_DEBUG_ASSERT(blocks == 0 || is_memory_aligned_to<BlockT>());
1,379,909,175✔
1073
               BOTAN_DEBUG_ASSERT(read_bytepos() % sizeof(BlockT) == 0);
1,379,909,175✔
1074
               // Intermittently casting to void* to avoid a compiler warning
1075
               void* ptr = reinterpret_cast<void*>(m_source.as_byte_span().data() + read_bytepos());
1,379,909,175✔
1076
               return {reinterpret_cast<BlockT*>(ptr), blocks};
1,379,909,175✔
1077
            }
1078

1079
            template <std::unsigned_integral BlockT>
1080
               requires(is_byte_aligned() && is_const())
1081
            std::span<const BlockT> span(size_type blocks) const {
1,380,146,821✔
1082
               BOTAN_DEBUG_ASSERT(blocks == 0 || is_memory_aligned_to<BlockT>());
1,380,146,821✔
1083
               BOTAN_DEBUG_ASSERT(read_bytepos() % sizeof(BlockT) == 0);
1,380,146,821✔
1084
               // Intermittently casting to void* to avoid a compiler warning
1085
               const void* ptr = reinterpret_cast<const void*>(m_source.as_byte_span().data() + read_bytepos());
1,380,146,821✔
1086
               return {reinterpret_cast<const BlockT*>(ptr), blocks};
1,380,146,821✔
1087
            }
1088

1089
            void advance(size_type bytes)
1,380,146,854✔
1090
               requires(is_byte_aligned())
1091
            {
1092
               m_read_bitpos += bytes * 8;
1,380,146,854✔
1093
               m_write_bitpos += bytes * 8;
1,380,146,854✔
1094
            }
1095

1096
            template <std::unsigned_integral BlockT>
1097
               requires(is_byte_aligned())
1098
            size_t is_memory_aligned_to() const {
920,018,685✔
1099
               const void* cptr = m_source.as_byte_span().data() + read_bytepos();
920,018,685✔
1100
               const void* ptr_before = cptr;
920,018,685✔
1101

1102
               // std::align takes `ptr` as a reference (!), i.e. `void*&` and
1103
               // uses it as an out-param. Though, `cptr` is const because this
1104
               // method is const-qualified, hence the const_cast<>.
1105
               void* ptr = const_cast<void*>(cptr);  // NOLINT(*-const-correctness)
920,018,685✔
1106
               size_t size = sizeof(BlockT);
920,018,685✔
1107
               return ptr_before != nullptr && std::align(alignof(BlockT), size, ptr, size) == ptr_before;
1,840,037,370✔
1108
            }
1109

1110
         private:
1111
            size_type read_bytepos() const { return m_read_bitpos / 8; }
926,781,288✔
1112

1113
            size_type write_bytepos() const { return m_write_bitpos / 8; }
3,372,007✔
1114

1115
         private:
1116
            BitvectorT& m_source;
1117
            size_type m_start_bitoffset;
1118
            size_type m_bitlength;
1119

1120
            UnalignedDataHelper m_unaligned_helper;
1121

1122
            mutable size_type m_read_bitpos;
1123
            mutable size_type m_write_bitpos;
1124
      };
1125

1126
      /**
1127
       * Helper struct for the low-level handling of blockwise operations
1128
       *
1129
       * This has two main code paths: Optimized for byte-aligned ranges that
1130
       * can simply be taken from memory as-is. And a generic implementation
1131
       * that must assemble blocks from unaligned bits before processing.
1132
       */
1133
      template <typename FnT, typename... ParamTs>
1134
         requires detail::blockwise_processing_callback<FnT, ParamTs...>
1135
      class blockwise_processing_callback_trait {
1136
         public:
1137
            constexpr static bool needs_mask = detail::blockwise_processing_callback_with_mask<FnT, ParamTs...>;
1138
            constexpr static bool is_manipulator = detail::manipulating_blockwise_processing_callback<FnT, ParamTs...>;
1139
            constexpr static bool is_predicate = detail::predicate_blockwise_processing_callback<FnT, ParamTs...>;
1140
            static_assert(!is_manipulator || !is_predicate, "cannot be manipulator and predicate at the same time");
1141

1142
            /**
1143
             * Applies @p fn to the blocks provided in @p blocks by simply reading from
1144
             * memory without re-arranging any bits across byte-boundaries.
1145
             */
1146
            template <std::unsigned_integral... BlockTs>
1147
               requires(all_same_v<std::remove_cv_t<BlockTs>...> && sizeof...(BlockTs) == sizeof...(ParamTs))
1148
            constexpr static bool apply_on_full_blocks(FnT fn, std::span<BlockTs>... blocks) {
1,380,146,854✔
1149
               constexpr size_type bits = sizeof(detail::first_t<BlockTs...>) * 8;
1,380,146,854✔
1150
               const size_type iterations = detail::first(blocks...).size();
1,379,909,607✔
1151
               for(size_type i = 0; i < iterations; ++i) {
2,147,483,647✔
1152
                  if constexpr(is_predicate) {
1153
                     if(!apply(fn, bits, blocks[i]...)) {
33✔
1154
                        return false;
1155
                     }
1156
                  } else if constexpr(is_manipulator) {
1157
                     detail::first(blocks...)[i] = apply(fn, bits, blocks[i]...);
2,147,483,647✔
1158
                  } else {
1159
                     apply(fn, bits, blocks[i]...);
6,156,777✔
1160
                  }
1161
               }
1162
               return true;
465✔
1163
            }
1164

1165
            /**
1166
             * Applies @p fn to as many blocks as @p ops provide for the given type.
1167
             */
1168
            template <std::unsigned_integral BlockT, typename... BitRangeOperatorTs>
1169
               requires(sizeof...(BitRangeOperatorTs) == sizeof...(ParamTs))
1170
            constexpr static bool apply_on_unaligned_blocks(FnT fn, BitRangeOperatorTs&... ops) {
460,414,205✔
1171
               constexpr size_type block_bits = sizeof(BlockT) * 8;
460,414,205✔
1172
               auto bits = detail::first(ops...).bits_to_read();
460,414,205✔
1173
               if(bits == 0) {
460,414,205✔
1174
                  return true;
1175
               }
1176

1177
               bits += block_bits;  // avoid unsigned integer underflow in the following loop
244,635✔
1178
               while(bits > block_bits * 2 - 8) {
3,661,557✔
1179
                  bits -= block_bits;
3,416,925✔
1180
                  if constexpr(is_predicate) {
1181
                     if(!apply(fn, bits, ops.template load_next<BlockT>()...)) {
29✔
1182
                        return false;
1183
                     }
1184
                  } else if constexpr(is_manipulator) {
1185
                     detail::first(ops...).store_next(apply(fn, bits, ops.template load_next<BlockT>()...));
3,410,697✔
1186
                  } else {
1187
                     apply(fn, bits, ops.template load_next<BlockT>()...);
44,900✔
1188
                  }
1189
               }
1190
               return true;
1191
            }
1192

1193
         private:
1194
            template <std::unsigned_integral... BlockTs>
1195
               requires(all_same_v<std::remove_cv_t<BlockTs>...>)
1196
            constexpr static auto apply(FnT fn, size_type bits, BlockTs... blocks) {
2,147,483,647✔
1197
               if constexpr(needs_mask) {
1198
                  return fn(blocks..., make_mask<detail::first_t<BlockTs...>>(bits));
3✔
1199
               } else {
1200
                  return fn(blocks...);
2,147,483,647✔
1201
               }
1202
            }
1203
      };
1204

1205
      /**
1206
       * Helper function of `full_range_operation` and `range_operation` that
1207
       * calls @p fn on a given aligned unsigned integer block as long as the
1208
       * underlying bit range contains enough bits to fill the block fully.
1209
       *
1210
       * This uses bare memory access to gain a speed up for aligned data.
1211
       */
1212
      template <std::unsigned_integral BlockT, typename FnT, typename... BitRangeOperatorTs>
1213
         requires(detail::blockwise_processing_callback<FnT, BitRangeOperatorTs...> &&
1214
                  sizeof...(BitRangeOperatorTs) > 0)
1215
      static bool _process_in_fully_aligned_blocks_of(FnT fn, BitRangeOperatorTs&... ops) {
1,380,146,854✔
1216
         constexpr size_type block_bytes = sizeof(BlockT);
1,380,146,854✔
1217
         constexpr size_type block_bits = block_bytes * 8;
1,380,146,854✔
1218
         const size_type blocks = detail::first(ops...).bits_to_read() / block_bits;
1,380,146,854✔
1219

1220
         using callback_trait = blockwise_processing_callback_trait<FnT, BitRangeOperatorTs...>;
1221
         const auto result = callback_trait::apply_on_full_blocks(fn, ops.template span<BlockT>(blocks)...);
2,147,483,647✔
1222
         (ops.advance(block_bytes * blocks), ...);
1,380,146,854✔
1223
         return result;
1,380,146,854✔
1224
      }
1225

1226
      /**
1227
       * Helper function of `full_range_operation` and `range_operation` that
1228
       * calls @p fn on a given unsigned integer block size as long as the
1229
       * underlying bit range contains enough bits to fill the block.
1230
       */
1231
      template <std::unsigned_integral BlockT, typename FnT, typename... BitRangeOperatorTs>
1232
         requires(detail::blockwise_processing_callback<FnT, BitRangeOperatorTs...>)
1233
      static bool _process_in_unaligned_blocks_of(FnT fn, BitRangeOperatorTs&... ops) {
460,414,205✔
1234
         using callback_trait = blockwise_processing_callback_trait<FnT, BitRangeOperatorTs...>;
1235
         return callback_trait::template apply_on_unaligned_blocks<BlockT>(fn, ops...);
460,322,890✔
1236
      }
1237

1238
      /**
1239
       * Apply @p fn to all bits in the ranges defined by @p ops. If more than
1240
       * one range operator is passed to @p ops, @p fn receives corresponding
1241
       * blocks of bits from each operator. Therefore, all @p ops have to define
1242
       * the exact same length of their underlying ranges.
1243
       *
1244
       * @p fn may return a bit block that will be stored into the _first_ bit
1245
       * range passed into @p ops. If @p fn returns a boolean, and its value is
1246
       * `false`, the range operation is cancelled and `false` is returned.
1247
       *
1248
       * The implementation ensures to pull bits in the largest bit blocks
1249
       * possible and reverts to smaller bit blocks only when needed.
1250
       */
1251
      template <typename FnT, typename... BitRangeOperatorTs>
1252
         requires(detail::blockwise_processing_callback<FnT, BitRangeOperatorTs...> &&
1253
                  sizeof...(BitRangeOperatorTs) > 0)
1254
      static bool range_operation(FnT fn, BitRangeOperatorTs... ops) {
460,140,274✔
1255
         BOTAN_ASSERT(has_equal_lengths(ops...), "all BitRangeOperators have the same length");
170,548✔
1256

1257
         if constexpr((BitRangeOperatorTs::is_byte_aligned() && ...)) {
1258
            // Note: At the moment we can assume that this will always be used
1259
            //       on the _entire_ bitvector. Therefore, we can safely assume
1260
            //       that the bitvectors' underlying buffers are properly aligned.
1261
            //       If this assumption changes, we need to add further handling
1262
            //       to process a byte padding at the beginning of the bitvector
1263
            //       until a memory alignment boundary is reached.
1264
            const bool alignment = (ops.template is_memory_aligned_to<uint64_t>() && ...);
920,018,685✔
1265
            BOTAN_ASSERT_NOMSG(alignment);
×
1266

1267
            return _process_in_fully_aligned_blocks_of<uint64_t>(fn, ops...) &&
920,097,908✔
1268
                   _process_in_fully_aligned_blocks_of<uint32_t>(fn, ops...) &&
920,097,895✔
1269
                   _process_in_fully_aligned_blocks_of<uint16_t>(fn, ops...) &&
920,097,905✔
1270
                   _process_in_unaligned_blocks_of<uint8_t>(fn, ops...);
460,048,945✔
1271
         } else {
1272
            return _process_in_unaligned_blocks_of<uint64_t>(fn, ops...) &&
182,630✔
1273
                   _process_in_unaligned_blocks_of<uint32_t>(fn, ops...) &&
91,315✔
1274
                   _process_in_unaligned_blocks_of<uint16_t>(fn, ops...) &&
182,630✔
1275
                   _process_in_unaligned_blocks_of<uint8_t>(fn, ops...);
91,315✔
1276
         }
1277
      }
1278

1279
      /**
1280
       * Apply @p fn to all bit blocks in the bitvector(s).
1281
       */
1282
      template <typename FnT, typename... BitvectorTs>
1283
         requires(detail::blockwise_processing_callback<FnT, BitvectorTs...> &&
1284
                  (is_bitvector_v<std::remove_cvref_t<BitvectorTs>> && ... && true))
1285
      static bool full_range_operation(FnT&& fn, BitvectorTs&... bitvecs) {
460,048,959✔
1286
         BOTAN_ASSERT(has_equal_lengths(bitvecs...), "all bitvectors have the same length");
460,048,959✔
1287
         return range_operation(std::forward<FnT>(fn), BitRangeOperator<BitvectorTs>(bitvecs)...);
460,048,959✔
1288
      }
1289

1290
      template <typename SomeT, typename... SomeTs>
1291
      static bool has_equal_lengths(const SomeT& v, const SomeTs&... vs) {
919,978,146✔
1292
         return ((v.size() == vs.size()) && ... && true);
919,978,146✔
1293
      }
1294

1295
      template <std::unsigned_integral T>
1296
      static constexpr T make_mask(size_type bits) {
3✔
1297
         const bool max = bits >= sizeof(T) * 8;
3✔
1298
         bits &= T(max - 1);
3✔
1299
         return (T(!max) << bits) - 1;
3✔
1300
      }
1301

1302
      auto as_byte_span() { return std::span{m_blocks.data(), m_blocks.size() * sizeof(block_type)}; }
1,846,622,905✔
1303

1304
      auto as_byte_span() const { return std::span{m_blocks.data(), m_blocks.size() * sizeof(block_type)}; }
1,843,586,386✔
1305

1306
   private:
1307
      size_type m_bits;
1308
      std::vector<block_type, allocator_type> m_blocks;
1309
};
1310

1311
using secure_bitvector = bitvector_base<secure_allocator>;
1312
using bitvector = bitvector_base<std::allocator>;
1313

1314
namespace detail {
1315

1316
/**
1317
 * If one of the allocators is a Botan::secure_allocator, this will always
1318
 * prefer it. Otherwise, the allocator of @p lhs will be used as a default.
1319
 */
1320
template <bitvectorish T1, bitvectorish T2>
1321
constexpr auto copy_lhs_allocator_aware(const T1& lhs, const T2& /*rhs*/) {
63✔
1322
   constexpr bool needs_secure_allocator =
63✔
1323
      strong_type_wrapped_type<T1>::uses_secure_allocator || strong_type_wrapped_type<T2>::uses_secure_allocator;
1324

1325
   if constexpr(needs_secure_allocator) {
1326
      return lhs.template as<secure_bitvector>();
56✔
1327
   } else {
1328
      return lhs.template as<bitvector>();
8✔
1329
   }
1330
}
1331

1332
}  // namespace detail
1333

1334
template <bitvectorish T1, bitvectorish T2>
1335
auto operator|(const T1& lhs, const T2& rhs) {
5✔
1336
   auto res = detail::copy_lhs_allocator_aware(lhs, rhs);
5✔
1337
   res |= rhs;
5✔
1338
   return res;
5✔
1339
}
×
1340

1341
template <bitvectorish T1, bitvectorish T2>
1342
auto operator&(const T1& lhs, const T2& rhs) {
4✔
1343
   auto res = detail::copy_lhs_allocator_aware(lhs, rhs);
4✔
1344
   res &= rhs;
4✔
1345
   return res;
4✔
1346
}
×
1347

1348
template <bitvectorish T1, bitvectorish T2>
1349
auto operator^(const T1& lhs, const T2& rhs) {
54✔
1350
   auto res = detail::copy_lhs_allocator_aware(lhs, rhs);
54✔
1351
   res ^= rhs;
54✔
1352
   return res;
54✔
1353
}
×
1354

1355
template <bitvectorish T1, bitvectorish T2>
1356
bool operator==(const T1& lhs, const T2& rhs) {
10✔
1357
   return lhs.equals_vartime(rhs);
10✔
1358
}
1359

1360
namespace detail {
1361

1362
/**
1363
 * A Strong<> adapter for arbitrarily large bitvectors
1364
 */
1365
template <concepts::container T>
1366
   requires is_bitvector_v<T>
1367
class Strong_Adapter<T> : public Container_Strong_Adapter_Base<T> {
633,145✔
1368
   public:
1369
      using size_type = typename T::size_type;
1370

1371
   public:
1372
      using Container_Strong_Adapter_Base<T>::Container_Strong_Adapter_Base;
609✔
1373

1374
      auto at(size_type i) const { return this->get().at(i); }
96,256✔
1375

1376
      auto at(size_type i) { return this->get().at(i); }
456,066,915✔
1377

1378
      auto set(size_type i) { return this->get().set(i); }
1✔
1379

1380
      auto unset(size_type i) { return this->get().unset(i); }
1✔
1381

1382
      auto flip(size_type i) { return this->get().flip(i); }
1✔
1383

1384
      auto flip() { return this->get().flip(); }
1✔
1385

1386
      template <typename OutT>
1387
      auto as() const {
73✔
1388
         return this->get().template as<OutT>();
73✔
1389
      }
1390

1391
      template <bitvectorish OutT = T>
1392
      auto subvector(size_type pos, std::optional<size_type> length = std::nullopt) const {
128,266✔
1393
         return this->get().template subvector<OutT>(pos, length);
128,207✔
1394
      }
1395

1396
      template <typename OutT>
1397
         requires(std::unsigned_integral<strong_type_wrapped_type<OutT>> &&
1398
                  !std::same_as<bool, strong_type_wrapped_type<OutT>>)
1399
      auto subvector(size_type pos) const {
74,940✔
1400
         return this->get().template subvector<OutT>(pos);
74,940✔
1401
      }
1402

1403
      template <typename InT>
1404
         requires(std::unsigned_integral<strong_type_wrapped_type<InT>> && !std::same_as<bool, InT>)
1405
      void subvector_replace(size_type pos, InT value) {
74,939✔
1406
         return this->get().subvector_replace(pos, value);
74,939✔
1407
      }
1408

1409
      template <bitvectorish OtherT>
1410
      auto equals(const OtherT& other) const {
45✔
1411
         return this->get().equals(other);
45✔
1412
      }
1413

1414
      auto push_back(bool b) { return this->get().push_back(b); }
397,281✔
1415

1416
      auto pop_back() { return this->get().pop_back(); }
2✔
1417

1418
      auto front() const { return this->get().front(); }
1419

1420
      auto front() { return this->get().front(); }
1✔
1421

1422
      auto back() const { return this->get().back(); }
1423

1424
      auto back() { return this->get().back(); }
1✔
1425

1426
      auto any_vartime() const { return this->get().any_vartime(); }
1✔
1427

1428
      auto all_vartime() const { return this->get().all_vartime(); }
1✔
1429

1430
      auto none_vartime() const { return this->get().none_vartime(); }
1✔
1431

1432
      auto has_odd_hamming_weight() const { return this->get().has_odd_hamming_weight(); }
1✔
1433

1434
      auto hamming_weight() const { return this->get().hamming_weight(); }
83✔
1435

1436
      auto from_bytes(std::span<const uint8_t> bytes, std::optional<size_type> bits = std::nullopt) {
1437
         return this->get().from_bytes(bytes, bits);
1438
      }
1439

1440
      template <typename OutT = T>
1441
      auto to_bytes() const {
1442
         return this->get().template to_bytes<OutT>();
1443
      }
1444

1445
      auto to_bytes(std::span<uint8_t> out) const { return this->get().to_bytes(out); }
59✔
1446

1447
      auto to_string() const { return this->get().to_string(); }
1✔
1448

1449
      auto capacity() const { return this->get().capacity(); }
1450

1451
      auto reserve(size_type n) { return this->get().reserve(n); }
1452

1453
      constexpr void _const_time_poison() const { this->get()._const_time_poison(); }
71✔
1454

1455
      constexpr void _const_time_unpoison() const { this->get()._const_time_unpoison(); }
98✔
1456
};
1457

1458
}  // namespace detail
1459

1460
}  // namespace Botan
1461

1462
#endif
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