/mcuboot-3.7.0/ext/tinycrypt-sha512/lib/source/ |
D | sha512.c | 170 static inline uint64_t ROTR(uint64_t a, uint64_t n) in ROTR() 175 #define Sigma0(a)(ROTR((a), 28) ^ ROTR((a), 34) ^ ROTR((a), 39)) argument 176 #define Sigma1(a)(ROTR((a), 14) ^ ROTR((a), 18) ^ ROTR((a), 41)) argument 177 #define sigma0(a)(ROTR((a), 1) ^ ROTR((a), 8) ^ ((a) >> 7)) argument 178 #define sigma1(a)(ROTR((a), 19) ^ ROTR((a), 61) ^ ((a) >> 6)) argument 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-3.7.0/ext/tinycrypt/lib/source/ |
D | sha256.c | 157 static inline unsigned int ROTR(unsigned int a, unsigned int n) in ROTR() 162 #define Sigma0(a)(ROTR((a), 2) ^ ROTR((a), 13) ^ ROTR((a), 22)) argument 163 #define Sigma1(a)(ROTR((a), 6) ^ ROTR((a), 11) ^ ROTR((a), 25)) argument 164 #define sigma0(a)(ROTR((a), 7) ^ ROTR((a), 18) ^ ((a) >> 3)) argument 165 #define sigma1(a)(ROTR((a), 17) ^ ROTR((a), 19) ^ ((a) >> 10)) argument 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 | aes_decrypt.c | 67 #define mult8(a)(_double_byte(_double_byte(_double_byte(a)))) argument 68 #define mult9(a)(mult8(a)^(a)) argument 69 #define multb(a)(mult8(a)^_double_byte(a)^(a)) argument 70 #define multd(a)(mult8(a)^_double_byte(_double_byte(a))^(a)) argument 71 #define multe(a)(mult8(a)^_double_byte(_double_byte(a))^_double_byte(a)) argument
|
D | aes_encrypt.c | 62 static inline unsigned int rotword(unsigned int a) in rotword() 67 #define subbyte(a, o)(sbox[((a) >> (o))&0xff] << (o)) argument 68 #define subword(a)(subbyte(a, 24)|subbyte(a, 16)|subbyte(a, 8)|subbyte(a, 0)) argument 122 #define triple(a)(_double_byte(a)^(a)) argument
|
D | utils.c | 59 uint8_t _double_byte(uint8_t a) in _double_byte() 64 int _compare(const uint8_t *a, const uint8_t *b, size_t size) in _compare()
|
D | ecc_dsa.c | 187 static bitcount_t smax(bitcount_t a, bitcount_t b) in smax()
|
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
|
/mcuboot-3.7.0/ext/tinycrypt/tests/ |
D | test_cbc_mode.c | 106 struct tc_aes_key_sched_struct a; in test_1_and_2() local
|
/mcuboot-3.7.0/scripts/ |
D | assemble.py | 32 def same_keys(a, b): argument
|
/mcuboot-3.7.0/ext/tinycrypt/lib/include/tinycrypt/ |
D | ecc.h | 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-3.7.0/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 | 322 static inline bool boot_u32_safe_add(uint32_t *dest, uint32_t a, uint32_t b) in boot_u32_safe_add() 341 static inline bool boot_u16_safe_add(uint16_t *dest, uint16_t a, uint16_t b) in boot_u16_safe_add()
|
/mcuboot-3.7.0/ext/fiat/src/ |
D | curve25519.c | 305 const uint8_t *a = in_a; in CRYPTO_memcmp() local 596 static void slide(signed char *r, const uint8_t *a) { in slide() 634 static void ge_double_scalarmult_vartime(ge_p2 *r, const uint8_t *a, in ge_double_scalarmult_vartime() 705 static inline int64_t int64_lshift21(int64_t a) { in int64_lshift21()
|
D | curve25519.h | 155 static inline uint32_t value_barrier_u32(uint32_t a) { in value_barrier_u32()
|
/mcuboot-3.7.0/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-3.7.0/boot/espressif/port/ |
D | esp_mcuboot.c | 27 # define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
|