Botan 3.5.0
Crypto and TLS for C&
|
#include <ct_utils.h>
Public Member Functions | |
constexpr bool | as_bool () const |
constexpr CT::Choice | as_choice () const |
constexpr T | if_not_set_return (T x) const |
constexpr T | if_set_return (T x) const |
constexpr void | if_set_zero_out (T buf[], size_t elems) |
Mask (const Mask< T > &other)=default | |
template<typename U > | |
constexpr | Mask (Mask< U > o) |
Mask< T > & | operator&= (Mask< T > o) |
Mask< T > & | operator= (const Mask< T > &other)=default |
Mask< T > & | operator^= (Mask< T > o) |
Mask< T > & | operator|= (Mask< T > o) |
constexpr Mask< T > | operator~ () const |
constexpr T | select (T x, T y) const |
constexpr T | select_and_unpoison (T x, T y) const |
Mask< T > | select_mask (Mask< T > x, Mask< T > y) const |
constexpr void | select_n (T output[], const T x[], const T y[], size_t len) const |
constexpr T | unpoisoned_value () const |
constexpr T | value () const |
Static Public Member Functions | |
static constexpr Mask< T > | cleared () |
template<typename U > | |
static constexpr Mask< T > | expand (Mask< U > m) |
static constexpr Mask< T > | expand (T v) |
static constexpr Mask< T > | expand_top_bit (T v) |
static constexpr Mask< T > | from_choice (Choice c) |
static constexpr Mask< T > | is_any_of (T v, std::initializer_list< T > accepted) |
static constexpr Mask< T > | is_equal (T x, T y) |
static constexpr Mask< T > | is_gt (T x, T y) |
static constexpr Mask< T > | is_gte (T x, T y) |
static constexpr Mask< T > | is_lt (T x, T y) |
static constexpr Mask< T > | is_lte (T x, T y) |
static constexpr Mask< T > | is_within_range (T v, T l, T u) |
static constexpr Mask< T > | is_zero (T x) |
static constexpr Mask< T > | set () |
Friends | |
Mask< T > | operator& (Mask< T > x, Mask< T > y) |
Mask< T > | operator^ (Mask< T > x, Mask< T > y) |
Mask< T > | operator| (Mask< T > x, Mask< T > y) |
A Mask type used for constant-time operations. A Mask<T> always has value either |0| (all bits cleared) or |1| (all bits set). All operations in a Mask<T> are intended to compile to code which does not contain conditional jumps. This must be verified with tooling (eg binary disassembly or using valgrind) since you never know what a compiler might do.
Definition at line 184 of file ct_utils.h.
|
default |
|
inlineconstexpr |
|
inlineconstexpr |
Unsafe conversion to bool
This conversion itself is (probably) constant time, but once the mask is reduced to a simple bool, it's entirely possible for the compiler to perform range analysis on the values, since there are just the two. As a consequence even if the caller is not using this in an obviously branchy way (if(mask.as_bool()) ...
) a smart compiler may introduce branches depending on the value.
Definition at line 407 of file ct_utils.h.
References Botan::CT::Mask< T >::unpoisoned_value().
|
inlineconstexpr |
Return a Choice based on this mask
Definition at line 412 of file ct_utils.h.
References Botan::CT::Choice::from_int(), and Botan::CT::Mask< T >::unpoisoned_value().
|
inlinestaticconstexpr |
Return a Mask<T> of |0| (all bits cleared)
Definition at line 208 of file ct_utils.h.
References Botan::CT::Mask< T >::Mask().
Referenced by Botan::low_zero_bits(), Botan::oaep_find_delim(), Botan::EME_PKCS1v15::unpad(), Botan::OneAndZeros_Padding::unpad(), and Botan::x448().
|
inlinestaticconstexpr |
Return a Mask<T> which is set if m is set
Definition at line 237 of file ct_utils.h.
References T, and Botan::CT::Mask< T >::value().
|
inlinestaticconstexpr |
Return a Mask<T> which is set if v is != 0
Definition at line 213 of file ct_utils.h.
References Botan::CT::value_barrier().
Referenced by Botan::bigint_cnd_abs(), Botan::bigint_cnd_add(), Botan::bigint_cnd_sub(), Botan::bigint_cnd_swap(), Botan::bigint_ct_is_lt(), Botan::bigint_shl1(), Botan::bigint_shl2(), Botan::bigint_shr1(), Botan::bigint_shr2(), Botan::Scalar448::bytes_are_reduced(), Botan::BigInt::cond_flip_sign(), Botan::CT::conditional_assign_mem(), Botan::CT::conditional_copy_mem(), Botan::CT::conditional_swap(), Botan::constant_time_compare(), Botan::CT::copy_output(), Botan::BigInt::ct_cond_assign(), Botan::Ed448Point::decode(), Botan::low_zero_bits(), Botan::Ed448Point::operator==(), Botan::redc_p521(), Botan::Sodium::sodium_is_zero(), Botan::ANSI_X923_Padding::unpad(), Botan::OneAndZeros_Padding::unpad(), and Botan::x448().
|
inlinestaticconstexpr |
Return a Mask<T> which is set if the top bit of v is set
Definition at line 231 of file ct_utils.h.
References Botan::expand_top_bit(), Botan::CT::Mask< T >::Mask(), and Botan::CT::value_barrier().
Referenced by Botan::ct_divide_word(), Botan::CT::Mask< T >::is_any_of(), and Botan::CT::Mask< T >::is_lt().
|
inlinestaticconstexpr |
Return a Mask<T> which is set if choice is set
Definition at line 218 of file ct_utils.h.
References Botan::CT::Mask< T >::Mask(), T, and Botan::CT::Choice::value().
Referenced by Botan::CT::conditional_assign_mem(), and Botan::AffineCurvePoint< FieldElement, Params >::serialize_compressed_to().
|
inlineconstexpr |
Return x if the mask is cleared, or otherwise zero
Definition at line 351 of file ct_utils.h.
Referenced by Botan::CT::Mask< T >::if_set_zero_out(), and Botan::EME_PKCS1v15::unpad().
|
inlineconstexpr |
Return x if the mask is set, or otherwise zero
Definition at line 346 of file ct_utils.h.
References Botan::CT::Mask< T >::value().
|
inlineconstexpr |
If this mask is set, zero out buf, otherwise do nothing
Definition at line 382 of file ct_utils.h.
References Botan::CT::Mask< T >::if_not_set_return().
|
inlinestaticconstexpr |
Definition at line 287 of file ct_utils.h.
References Botan::CT::Mask< T >::expand_top_bit(), T, and Botan::CT::value_barrier().
|
inlinestaticconstexpr |
Return a Mask<T> which is set if x == y
Definition at line 250 of file ct_utils.h.
References Botan::CT::Mask< T >::is_zero(), T, and Botan::CT::value_barrier().
Referenced by Botan::bigint_cmp(), Botan::bigint_ct_is_lt(), Botan::TLS::check_tls_cbc_padding(), Botan::constant_time_compare(), Botan::CT::copy_output(), Botan::AffineCurvePoint< FieldElement, Params >::ct_select(), Botan::PK_Decryptor::decrypt_or_random(), Botan::AffineCurvePoint< FieldElement, Params >::deserialize(), Botan::EC_Point_Base_Point_Precompute::mul(), Botan::EC_Point_Var_Point_Precompute::mul(), Botan::oaep_find_delim(), Botan::redc_p521(), Botan::Sodium::sodium_compare(), Botan::ESP_Padding::unpad(), Botan::OneAndZeros_Padding::unpad(), Botan::PKCS7_Padding::unpad(), and Botan::vartime_divide().
|
inlinestaticconstexpr |
Return a Mask<T> which is set if x > y
Definition at line 266 of file ct_utils.h.
References Botan::CT::Mask< T >::is_lt().
Referenced by Botan::CT::copy_output(), Botan::ANSI_X923_Padding::unpad(), Botan::ESP_Padding::unpad(), and Botan::PKCS7_Padding::unpad().
|
inlinestaticconstexpr |
Return a Mask<T> which is set if x >= y
Definition at line 276 of file ct_utils.h.
Referenced by Botan::ct_divide_word(), Botan::ANSI_X923_Padding::unpad(), and Botan::PKCS7_Padding::unpad().
|
inlinestaticconstexpr |
Return a Mask<T> which is set if x < y
Definition at line 258 of file ct_utils.h.
References Botan::CT::Mask< T >::expand_top_bit(), and T.
Referenced by Botan::bigint_cmp(), Botan::bigint_ct_is_lt(), Botan::TLS::check_tls_cbc_padding(), Botan::CT::Mask< T >::is_gt(), Botan::FrodoMatrix::sample(), and Botan::Sodium::sodium_compare().
|
inlinestaticconstexpr |
Return a Mask<T> which is set if x <= y
Definition at line 271 of file ct_utils.h.
Referenced by Botan::TLS::check_tls_cbc_padding(), and Botan::constant_time_compare().
|
inlinestaticconstexpr |
Definition at line 278 of file ct_utils.h.
References T, and Botan::CT::value_barrier().
|
inlinestaticconstexpr |
Return a Mask<T> which is set if v is == 0 or cleared otherwise
Definition at line 245 of file ct_utils.h.
References Botan::ct_is_zero(), Botan::CT::Mask< T >::Mask(), and Botan::CT::value_barrier().
Referenced by Botan::CT::all_zeros(), Botan::bigint_cmp(), Botan::bigint_ct_is_eq(), Botan::bigint_ct_is_lt(), Botan::BigInt::ct_reduce_below(), Botan::Polynomial::from_message(), Botan::CT::is_equal(), Botan::CT::Mask< T >::is_equal(), Botan::oaep_find_delim(), Botan::CT::strip_leading_zeros(), Botan::EME_PKCS1v15::unpad(), Botan::ESP_Padding::unpad(), and Botan::OneAndZeros_Padding::unpad().
AND-combine two masks
Definition at line 302 of file ct_utils.h.
References Botan::CT::Mask< T >::value().
|
default |
XOR-combine two masks
Definition at line 310 of file ct_utils.h.
References Botan::CT::Mask< T >::value().
OR-combine two masks
Definition at line 318 of file ct_utils.h.
References Botan::CT::Mask< T >::value().
|
inlineconstexpr |
Negate this mask
Definition at line 341 of file ct_utils.h.
References Botan::CT::Mask< T >::Mask(), and Botan::CT::Mask< T >::value().
If this mask is set, return x, otherwise return y
Definition at line 356 of file ct_utils.h.
References Botan::choose(), and Botan::CT::Mask< T >::value().
Referenced by Botan::bigint_cnd_add_or_sub(), Botan::CT::Mask< T >::select_and_unpoison(), Botan::CT::Mask< T >::select_mask(), and Botan::CT::Mask< T >::select_n().
|
inlineconstexpr |
Definition at line 358 of file ct_utils.h.
References Botan::CT::Mask< T >::select(), T, and Botan::CT::unpoison().
|
inline |
If this mask is set, return x, otherwise return y
Definition at line 367 of file ct_utils.h.
References Botan::CT::Mask< T >::Mask(), Botan::CT::Mask< T >::select(), and Botan::CT::Mask< T >::value().
|
inlineconstexpr |
Conditionally set output to x or y, depending on if mask is set or cleared (resp)
Definition at line 373 of file ct_utils.h.
References Botan::CT::Mask< T >::select().
Referenced by Botan::bigint_cnd_add_or_sub(), and Botan::CT::conditional_copy_mem().
|
inlinestaticconstexpr |
Return a Mask<T> of |1| (all bits set)
Definition at line 203 of file ct_utils.h.
References Botan::CT::Mask< T >::Mask(), and T.
Referenced by Botan::oaep_find_delim(), and Botan::CT::strip_leading_zeros().
|
inlineconstexpr |
Return the value of the mask, unpoisoned
Definition at line 391 of file ct_utils.h.
References T, Botan::CT::unpoison(), and Botan::CT::Mask< T >::value().
Referenced by Botan::CT::Mask< T >::as_bool(), and Botan::CT::Mask< T >::as_choice().
|
inlineconstexpr |
Return the underlying value of the mask
Definition at line 417 of file ct_utils.h.
References Botan::CT::value_barrier().
Referenced by Botan::CT::Mask< T >::expand(), Botan::CT::Mask< T >::if_set_return(), Botan::CT::Mask< T >::operator&=(), Botan::CT::Mask< T >::operator^=(), Botan::CT::Mask< T >::operator|=(), Botan::CT::Mask< T >::operator~(), Botan::CT::Mask< T >::select(), Botan::CT::Mask< T >::select_mask(), and Botan::CT::Mask< T >::unpoisoned_value().