Constrains a type to a single-byte type usable as a raw buffer element.
Declared in <crypto/common.h>
template<typename B>
concept ByteType = std::same_as<B, unsigned char> || std::same_as<B, std::byte>;
| Name | Description |
|---|---|
| B | The candidate byte type (unsigned char or std::byte). |