Home
last modified time | relevance | path

Searched defs:tag (Results 1 – 12 of 12) sorted by relevance

/mcuboot-3.6.0/boot/espressif/hal/include/
Desp_log.h17 #define ESP_LOGE(tag, fmt, ...) MCUBOOT_LOG_ERR("[%s] " fmt, tag, ##__VA_ARGS__) argument
18 #define ESP_LOGW(tag, fmt, ...) MCUBOOT_LOG_WRN("[%s] " fmt, tag, ##__VA_ARGS__) argument
19 #define ESP_LOGI(tag, fmt, ...) MCUBOOT_LOG_INF("[%s] " fmt, tag, ##__VA_ARGS__) argument
20 #define ESP_LOGD(tag, fmt, ...) MCUBOOT_LOG_DBG("[%s] " fmt, tag, ##__VA_ARGS__) argument
21 #define ESP_LOGV(tag, fmt, ...) MCUBOOT_LOG_DBG("[%s] " fmt, tag, ##__VA_ARGS__) argument
23 #define ESP_EARLY_LOGE(tag, fmt, ...) MCUBOOT_LOG_ERR("[%s] " fmt, tag, ##__VA_ARGS__) argument
24 #define ESP_EARLY_LOGW(tag, fmt, ...) MCUBOOT_LOG_WRN("[%s] " fmt, tag, ##__VA_ARGS__) argument
25 #define ESP_EARLY_LOGI(tag, fmt, ...) MCUBOOT_LOG_INF("[%s] " fmt, tag, ##__VA_ARGS__) argument
26 #define ESP_EARLY_LOGD(tag, fmt, ...) MCUBOOT_LOG_DBG("[%s] " fmt, tag, ##__VA_ARGS__) argument
27 #define ESP_EARLY_LOGV(tag, fmt, ...) MCUBOOT_LOG_DBG("[%s] " fmt, tag, ##__VA_ARGS__) argument
Dsoc_log.h12 #define SOC_LOGE(tag, fmt, ...) MCUBOOT_LOG_ERR("[%s] " fmt, tag, ##__VA_ARGS__) argument
13 #define SOC_LOGW(tag, fmt, ...) MCUBOOT_LOG_WRN("[%s] " fmt, tag, ##__VA_ARGS__) argument
14 #define SOC_LOGI(tag, fmt, ...) MCUBOOT_LOG_INF("[%s] " fmt, tag, ##__VA_ARGS__) argument
15 #define SOC_LOGD(tag, fmt, ...) MCUBOOT_LOG_DBG("[%s] " fmt, tag, ##__VA_ARGS__) argument
/mcuboot-3.6.0/ext/tinycrypt/tests/
Dtest_cmac_mode.c124 const uint8_t tag[BUF_LEN] = { in verify_cmac_null_msg() local
155 const uint8_t tag[BUF_LEN] = { in verify_cmac_1_block_msg() local
190 const uint8_t tag[BUF_LEN] = { in verify_cmac_320_bit_msg() local
228 const uint8_t tag[BUF_LEN] = { in verify_cmac_512_bit_msg() local
/mcuboot-3.6.0/ext/mbedtls-asn1/src/
Dasn1parse.c105 size_t *len, int tag ) in mbedtls_asn1_get_tag()
139 int tag, int *val ) in asn1_get_tagged_int()
253 int (*cb)( void *ctx, int tag, in mbedtls_asn1_traverse_sequence_of()
272 unsigned char const tag = *(*p)++; in mbedtls_asn1_traverse_sequence_of() local
331 int tag; member
336 int tag, in asn1_get_sequence_of_cb()
370 int tag) in mbedtls_asn1_get_sequence_of()
/mcuboot-3.6.0/boot/bootutil/include/bootutil/crypto/
Dhmac_sha256.h76 static inline int bootutil_hmac_sha256_finish(bootutil_hmac_sha256_context *ctx, uint8_t *tag, unsi… in bootutil_hmac_sha256_finish()
120 static inline int bootutil_hmac_sha256_finish(bootutil_hmac_sha256_context *ctx, uint8_t *tag, unsi… in bootutil_hmac_sha256_finish()
/mcuboot-3.6.0/ext/tinycrypt/lib/source/
Dccm_mode.c155 uint8_t tag[Nb * Nk]; in tc_ccm_generation_encryption() local
216 uint8_t tag[Nb * Nk]; in tc_ccm_decryption_verification() local
Dhmac.c125 int tc_hmac_final(uint8_t *tag, unsigned int taglen, TCHmacState_t ctx) in tc_hmac_final()
Dcmac_mode.c222 int tc_cmac_final(uint8_t *tag, TCCmacState_t s) in tc_cmac_final()
/mcuboot-3.6.0/ext/mbedtls-asn1/include/mbedtls/
Dasn1.h90 #define MBEDTLS_ASN1_IS_STRING_TAG( tag ) \ argument
/mcuboot-3.6.0/boot/zcbor/src/
Dzcbor_encode.c566 bool zcbor_tag_put(zcbor_state_t *state, uint32_t tag)
577 bool zcbor_tag_encode(zcbor_state_t *state, uint32_t *tag)
/mcuboot-3.6.0/boot/bootutil/src/
Dencrypted.c432 uint8_t tag[BOOTUTIL_CRYPTO_SHA256_DIGEST_SIZE]; in boot_enc_decrypt() local
/mcuboot-3.6.0/sim/src/
Dtlv.rs758 let tag = hmac::sign(&key, &cipherkey); in make_tlv() localVariable