Botan 3.9.0
Crypto and TLS for C&
Botan::Serpent_F::BitsliceT Concept Reference

#include <serpent_fn.h>

Concept definition

template<typename T>
concept Botan::Serpent_F::BitsliceT = requires(T& a, const T& b) {
a ^= b;
a &= b;
a |= b;
~a;
}

Detailed Description

Definition at line 19 of file serpent_fn.h.