Home
last modified time | relevance | path

Searched refs:message (Results 1 – 16 of 16) sorted by relevance

/mcuboot-latest/boot/espressif/
DCMakeLists.txt11 message(FATAL_ERROR "MCUBOOT_TARGET not defined. Please pass -DMCUBOOT_TARGET flag.")
30message("CMAKE_TOOLCHAIN_FILE not defined, searching for toolchain compiler in TOOLCHAIN_BIN_DIR: …
35message(FATAL_ERROR "No C compiler found. Please ensure that TOOLCHAIN_BIN_DIR directory contains …
39 message("C compiler found: ${CMAKE_C_COMPILER}")
43message(FATAL_ERROR "No C++ compiler found. Please ensure that TOOLCHAIN_BIN_DIR directory contain…
46 message("CXX compiler found: ${CMAKE_CXX_COMPILER}")
50message("No user-defined toolchain, setting default toolchain file: ${CMAKE_TOOLCHAIN_FILE}")
58 message("CMAKE_TOOLCHAIN_FILE: ${CMAKE_TOOLCHAIN_FILE}")
79 message(FATAL_ERROR "Unsupported target ${MCUBOOT_TARGET}")
86 message(WARNING "ESP_HAL_PATH not defined, checking if IDF_PATH exists.")
[all …]
/mcuboot-latest/docs/release-notes.d/
Dfix-ram-load-zephyr-address.md1 - Fixed chain load address output log message for RAM load
/mcuboot-latest/sim/simflash/src/
Dlib.rs71 fn ebounds<T: AsRef<str>>(message: T) -> FlashError { in ebounds()
72 FlashError::OutOfBounds(message.as_ref().to_owned()) in ebounds()
76 fn ewrite<T: AsRef<str>>(message: T) -> FlashError { in ewrite()
77 FlashError::Write(message.as_ref().to_owned()) in ewrite()
81 fn esimulatedwrite<T: AsRef<str>>(message: T) -> FlashError { in esimulatedwrite()
82 FlashError::SimulatedFail(message.as_ref().to_owned()) in esimulatedwrite()
/mcuboot-latest/boot/zephyr/
DCMakeLists.txt35 message(FATAL_ERROR "
281 message(FATAL_ERROR "Signature key file defined in multiple conf files")
294 message("MCUBoot bootloader key file: ${KEY_FILE}")
321 message(FATAL_ERROR "Encryption key file defined in multiple conf files")
334 message("MCUBoot bootloader encryption key file: ${KEY_FILE}")
371 message(FATAL_ERROR "Unable to get parent of node: ${${node}}")
416message(WARNING "Unable to determine size of slot0 partition, cannot calculate minimum sector usag…
418message(WARNING "Unable to determine erase size of slot0 partition, cannot calculate minimum secto…
425message(WARNING "Unable to determine size of slot1 partition, cannot calculate minimum sector usag…
427message(WARNING "Unable to determine erase size of slot1 partition, cannot calculate minimum secto…
[all …]
DKconfig542 The maximum size of the CBOR message which stores boot
/mcuboot-latest/boot/espressif/include/crypto_config/
Dec256.cmake16 message(FATAL_ERROR "EC256 signature verification using Mbed TLS lib is not supported")
Drsa.cmake27 message(FATAL_ERROR "RSA signature verification using Tinycrypt lib is not supported")
Ded25519.cmake16 message(FATAL_ERROR "ED25519 image signing using Mbed TLS lib is not supported")
/mcuboot-latest/boot/bootutil/src/
Dimage_ed25519.c25 extern int ED25519_verify(const uint8_t *message, size_t message_len,
/mcuboot-latest/docs/
DSECURITY.md38 of any message.
Dtestplan-zephyr.md42 This should print a message: `boot_swap_type: Swap type: test`, and
DSubmittingPatches.md8 Each commit has to have, in the commit message, a "Signed-off-by" line
Dimgtool.md97 -h, --help Show this message and exit.
/mcuboot-latest/scripts/imgtool/
Dimage.py595 message = digest;
625 sig = key.sign_digest(message)
/mcuboot-latest/ext/tinycrypt/documentation/
Dtinycrypt.rst137 * The tc_hmac_final function, responsible for computing the message tag,
164 * The AES-CTR mode limits the size of a data message they encrypt to 2^32
/mcuboot-latest/ext/fiat/src/
Dcurve25519.c1052 int ED25519_verify(const uint8_t *message, size_t message_len, in ED25519_verify() argument
1110 ret = mbedtls_sha512_update_ret(&ctx, message, message_len); in ED25519_verify()
1130 rc = tc_sha512_update(&s, message, message_len); in ED25519_verify()