/mcuboot-latest/ext/tinycrypt-sha512/lib/source/ |
D | sha512.c | 180 #define Ch(a, b, c)(((a) & (b)) ^ ((~(a)) & (c))) argument 181 #define Maj(a, b, c)(((a) & (b)) ^ ((a) & (c)) ^ ((b) & (c))) argument 200 uint64_t a, b, c, d, e, f, g, h; in compress() local
|
/mcuboot-latest/ext/tinycrypt/lib/source/ |
D | sha256.c | 167 #define Ch(a, b, c)(((a) & (b)) ^ ((~(a)) & (c))) argument 168 #define Maj(a, b, c)(((a) & (b)) ^ ((a) & (c)) ^ ((b) & (c))) argument 183 unsigned int a, b, c, d, e, f, g, h; in compress() local
|
D | ccm_mode.c | 154 uint8_t b[Nb * Nk]; in tc_ccm_generation_encryption() local 215 uint8_t b[Nb * Nk]; in tc_ccm_decryption_verification() local
|
D | utils.c | 64 int _compare(const uint8_t *a, const uint8_t *b, size_t size) in _compare()
|
D | ecc.c | 245 static void muladd(uECC_word_t a, uECC_word_t b, uECC_word_t *r0, in muladd() 411 uECC_word_t a[NUM_ECC_WORDS], b[NUM_ECC_WORDS]; in uECC_vli_modInv() local 819 unsigned b = num_bytes - 1 - i; in uECC_vli_nativeToBytes() local 831 unsigned b = num_bytes - 1 - i; in uECC_vli_bytesToNative() local
|
D | ecc_dsa.c | 187 static bitcount_t smax(bitcount_t a, bitcount_t b) in smax()
|
/mcuboot-latest/ext/tinycrypt/lib/include/tinycrypt/ |
D | ecc.h | 119 uECC_word_t b[NUM_ECC_WORDS]; member 154 #define BYTES_TO_WORDS_8(a, b, c, d, e, f, g, h) 0x##d##c##b##a, 0x##h##g##f##e argument 155 #define BYTES_TO_WORDS_4(a, b, c, d) 0x##d##c##b##a argument
|
/mcuboot-latest/scripts/ |
D | assemble.py | 32 def same_keys(a, b): argument
|
/mcuboot-latest/ext/fiat/src/ |
D | curve25519.c | 306 const uint8_t *b = in_b; in CRYPTO_memcmp() local 598 int b; in slide() local 635 const ge_p3 *A, const uint8_t *b) { in ge_double_scalarmult_vartime() 1150 static void fe_cswap(fe *f, fe *g, fe_limb_t b) { in fe_cswap() 1270 unsigned b = 1 & (e[pos / 8] >> (pos & 7)); in x25519_scalar_mult_generic() local
|
/mcuboot-latest/boot/bootutil/src/ |
D | encrypted.c | 48 static inline int bootutil_constant_time_compare(const uint8_t *a, const uint8_t *b, size_t size) in bootutil_constant_time_compare() 53 static int bootutil_constant_time_compare(const uint8_t *a, const uint8_t *b, size_t size) in bootutil_constant_time_compare()
|
D | bootutil_priv.h | 362 static inline bool boot_u32_safe_add(uint32_t *dest, uint32_t a, uint32_t b) in boot_u32_safe_add() 381 static inline bool boot_u16_safe_add(uint16_t *dest, uint16_t a, uint16_t b) in boot_u16_safe_add()
|
/mcuboot-latest/boot/zcbor/include/ |
D | zcbor_common.h | 66 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument 70 #define MAX(a, b) (((a) < (b)) ? (b) : (a)) argument
|
/mcuboot-latest/boot/espressif/port/ |
D | esp_mcuboot.c | 28 # define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
|