Botan 3.6.0
Crypto and TLS for C&
Botan::detail::custom_storable Concept Reference

#include <loadstor.h>

Concept definition

template<typename T>
concept Botan::detail::custom_storable = requires(std::span<uint8_t, sizeof(T)> data, const T value) {
{ value.store_be(data) };
{ value.store_le(data) };
}
FE_25519 T
Definition ge.cpp:34

Detailed Description

Models a custom type that provides store methods to be stored in big- or little-endian byte order.

Definition at line 185 of file loadstor.h.