Searched defs:crypto_word_t (Results 1 - 1 of 1) sorted by relevance

/external/boringssl/src/crypto/
H A Dinternal.h187 * crypto_word_t lt = constant_time_lt_w(a, b);
190 /* crypto_word_t is the type that most constant-time functions use. Ideally we
194 * |BN_ULONG|, |crypto_word_t| is defined as an unsigned value with the native
197 typedef uint64_t crypto_word_t; typedef
199 typedef uint32_t crypto_word_t; typedef
204 #define CONSTTIME_TRUE_W ~((crypto_word_t)0)
205 #define CONSTTIME_FALSE_W ((crypto_word_t)0)
208 #define CONSTTIME_TRUE_W ~((crypto_word_t)0)
209 #define CONSTTIME_FALSE_W ((crypto_word_t)0)
215 static inline crypto_word_t constant_time_msb_
[all...]

Completed in 80 milliseconds