Improve docs

Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
Dave Rodgman 2023-08-10 12:18:27 +01:00
parent ac69b45486
commit 38b227c16b

View File

@ -37,8 +37,8 @@
* It has three main parts:
*
* - boolean operations
* These are all named mbedtls_ct_<type>_<operation>, and operate over
* mbedtls_ct_condition_t.
* These are all named mbedtls_ct_<type>_<operation>.
* They operate over <type> and return mbedtls_ct_condition_t.
* All arguments are considered secret.
* example: bool x = y | z => x = mbedtls_ct_bool_or(y, z)
* example: bool x = y == z => x = mbedtls_ct_uint_eq(y, z)