We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b26768a commit e7f25b7Copy full SHA for e7f25b7
1 file changed
include/boost/crypt2/drbg/detail/hash_drbg.hpp
@@ -61,7 +61,7 @@ class hash_drbg
61
static constexpr compat::uint64_t reseed_interval {281474976710656ULL}; // 2^48
62
63
compat::array<compat::byte, seedlen_bytes> constant_ {};
64
- compat::span<const std::byte, seedlen_bytes> constant_span_ {constant_};
+ compat::span<const compat::byte, seedlen_bytes> constant_span_ {constant_};
65
compat::array<compat::byte, seedlen_bytes> value_ {};
66
compat::span<const compat::byte, seedlen_bytes> value_span_ {value_};
67
0 commit comments